Sub-Folders in applications folder

Hi,
I have accumulated a large amount of apps in my apps folder and I want to know if it will cause system problems if I create sub-folders to group them for ease of finding.
What do you think?
Thanks in advance.
SR

Before proceeding you might want to look at the advice in This thread.
In a nutshell, for non Apple apps - should be no problem. For Apple apps - leave them where they are but create aliases to them. The aliases can go where you like. In a folder in the sidebar of Finder would be convenient…
Have fun,
Adrian

Similar Messages

  • Jsp code (js code) to display(tree) the files and sub folders in a folder

    Hi all
    plz can any one send me the source in jsp or js to display in tree structure for files and sub folders in a folder.

    There are dozens of Javascript tree widgets available on the Internet. Some are free. Some are good. Google will find them for you.
    (The only relevance of JSP to your question is that yes, you can generate HTML that uses one of those Javascript tree widgets.)

  • How to monitor contents of sub-folders in a Folder Action?

    Hello. I am wondering how I might read a folder's contentModDate within Terminal, i.e. from the command line and/or within a Folder Action.
    This is the situation: I am running Periscope Pro (PP) for motion-detected videos, which by default, places them within the user's ~/Movies/com.zipzapmac.Periscope-Pro folder. Within that folder, PP creates a folder with it's name based upon (a) machine name and (b) primary MAC address. For example, we'll pretend this folder is called MacPro(001122334455). Then within that folder, as PP is running in motion-detection mode, it creates a new folder based on the current date and then, within that, places videos when motion is detected. Very straight-forward and it works just fine.
    What I would like to do is have a folder action that (a) detects when any new folder or file is created within MacPro(001122334455) and (b) sends me a text-message via Apple Mail.
    If the MacPro(001122334455) folder is empty, I can create a Folder Action that will detect the creation of a sub-folder when the first motion-detected video is created and that successfully sends me a text-message, BUT if a second video is created later within the same date-named folder, I will not get a message. I would get a text-message on the following day as a new folder is created within MacPro(001122334455) that signals the first motion-detected video of the day, but again not subsequent videos on the same day.
    The text-message via Apple Mail I have easily scripted via Applescript and it works flawlessly.
    Since Folder Actions only work upon a single pre-defined folder and not on sub-folders, I can never get automatically notified via text-message of second/third/fourth/etc. motion-detected videos as they're created... only the first one of each day.
    So, I'm wondering whether there's a different way, perhaps through launchd that I might script this process. I'm thinking that if the contentModDate value of the MacPro(001122334455) folder could be read, compared with the last known value, and then---if different---execute the Applescript. OR PERHAPS I'm going about this all wrong and you might have another, better idea?
    I'm open to suggestions.
    -- David (da2357)

    Well, I found a solution that does not use a Folder Action. Since Folder Actions will only work upon the specified folder and not upon the contents of any sub-folders, I needed a different solution.
    First, I launched Terminal and created a new file called monitorPeriscope. I set executable permissions (chmod 700 monitorPeriscope). The contents of the file:
    #!/bin/bash
    # monitor the size of a specified folder and
    # when the size increases, run an applescript
    # copyright 2013, david dot allie at me dot com
    # you are welcome to use this script, but please attribute authorship.
    # CONSTANTS
    WATCHFOLDER="/users/xadmin/movies/com.zipzapmac.Periscope-Pro"
    SIZEFILEONE="/users/xadmin/.bin/foldersizeone"
    SIZEFILETWO="/users/xadmin/.bin/foldersizetwo"
    MYAPPLESCRIPT="/users/xadmin/documents/dropbox/programming/applescript/motion_de tected_text.scpt"
    # START
    # calculates current size of watchfolder, saves to sizefiletwo, then
    # performs a diff operation, result which is evaluated in if statement,
    # and if different, runs applescript, and copy sizefiletwo to sizefileone
    du -h -k -d3 -c $WATCHFOLDER | awk 'END{print}' | awk '{print $1}' > $SIZEFILETWO
    diff --brief $SIZEFILEONE $SIZEFILETWO
    if [ $? -eq 1 ]
      then
        osascript $MYAPPLESCRIPT
        cp -f $SIZEFILETWO $SIZEFILEONE
    fi
    exit 0
    Next, I created the following Applescript, replacing Some User, [email protected] and the text address of [email protected] below with my real values.
    using terms from application "Mail"
    tell application "Mail"
    set theName to "Some User"
    set theAddress to "[email protected]"
    set theContent to "Motion detected in OFFICE."
    set newMessage to make new outgoing message
    tell newMessage
    make new to recipient at end of to recipients with properties {name:theName, address:theAddress}
    set visible to true
    set sender to "[email protected]"
    set subject to "ALERT "
    set content to theContent
    send newMessage
    end tell
    end tell
    end using terms from
    Next, using the touch command, I created /users/xadmin/.bin/foldersizetwo and /users/xadmin/.bin/foldersizetwo as needed for the bash shell script (touch /users/xadmin/.bin/foldersizeone and touch /users/xadmin/.bin/foldersizetwo).
    Next, still in Terminal, I navigated to ~/Library/LaunchAgents and created the following plist using nano, which I named com.xadmin.monitorPeriscope.plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
              <key>Disabled</key>
              <false/>
              <key>Label</key>
              <string>com.xadmin.monitorPeriscope</string>
              <key>ProgramArguments</key>
              <array>
              <string>/users/xadmin/.bin/monitorPeriscope</string>
              </array>
              <key>RunAtLoad</key>
              <true/>
              <key>StartInterval</key>
              <integer>900</integer>
    </dict>
    </plist>
    Finally, all that was needed was to log out and then log back in. Once I launched the Periscope Pro app and started the motion-detection mode, I left my office... and within fifteen minutes I received a text message indicating that motion had been detected in my office. In the plist above, I set a StartInterval of 900 seconds, which corresponds to 15 minutes. I can reduce it down to 300 seconds (5 minutes) without it adversely affecting performance, but I'm going to leave the setting where it is for now.
    So, I solved my own problem and I'm pleased with the results.
    -- David

  • Need help in creating multiple sub folders in new folder

    hi all,
    need to seek some expert advise.
    i need to create an automator work flow as once launch, it will show a dialog asking user for the new folder name to be created, and asking user how many sub folders to be created.
    i have done the following and got stuck...
    requirement is user ket in foldername upon dialog for example "test" and no of sub folders to create exp "5"
    it will create a folder call "test" on desktop n 5 subfolder as: test1 , test2, test3, test4, test5.
    Apple script

    Automator gets a bit unweildy when trying to vary things outside of what the actions provide.  Since you are already using an AppeScript in your workflow, might as well do the whole thing:
    set baseFolder to (path to desktop) -- the location to create the folder
    display dialog "Please provide a new folder name:" default answer "test"
    set folderName to text returned of the result
    repeat -- keep repeating until a number is returned
      display dialog "How many subfolders?" default answer "5"
      set theNumber to text returned of the result
        try -- test the result
          set theNumber to theNumber as integer
          exit repeat -- success
        end try
    end repeat
    tell application "Finder"
      try -- make new folder
        set newFolder to (make new folder at baseFolder with properties {name:folderName})
      on error number -48 -- skip errors if the folder is already there
        set newFolder to ((baseFolder as text) & folderName) as alias
      end try
      repeat with X from 1 to theNumber
        try -- make new subfolder
          make new folder at newFolder with properties {name:folderName & X}
        on error number -48 -- skip errors if the folder is already there
        end try
      end repeat
    end tell

  • Folder disappears when you try to open certain sub-folders

    When double clicking certain sub-folders, the main folder disappears and returns to the desktop. I repaired permissions with Disk Utility and it had no effect. Also verified the disk and it was okay.
    I also am getting an "Unable to read file" message on an Excel file that I had no problem opening a couple of months ago. Don't know if this is related or not.
    iMac 2 Ghz Intel Core Duo   Mac OS X (10.4.9)  

    Hi Daniel,
    This issue is a fairly common occurrence, and reasons of the problems are variously. We can narrow the reasons down as much as possible.
    Please refer to this article, I think the methods of this article are more specific.
    http://blogs.technet.com/b/the_microsoft_excel_support_team_blog/archive/2012/05/14/the-definitive-locked-file-post.aspx
    And try these solutions step by step. Above all, you should
     pay attention to the third solution ” Turn off the Preview Pane, Details Pane and pop ups that show information about file and desktop items”, make sure you have unchecked “Show pop-up description for folder and desktop items”.
    If you finish all of methods from this article, the problem still exists. Checking the permissions of users.
    For instance, the permission of user 1 is only read and he opens the [shared] file, the document creates a temporary file in the same directory as the original file. Thus the document gets a temporary lock file. When other users open the [shared]
    file again, they get the error message “file in use”.
    If you want to verify the reason of permission, checking the temporary file. This is a hidden file and it will be the same name as your document, but prefixed with a ~$ symbols.
    The easiest way out is to delete the temporary file, but this not a long-term solution. Checking the permissions of users is radically.
    Trying these solutions and let me know if they work. I am glad to help and forward to your reply.
    Best Regards,
    Emi

  • Smart Folder search - Exclude sub folders?

    When creating a Smart Folder is it possible to exclude sub folders of the folder you're searching, or a particular folder?

    There is no way to reference a folder in Spotlight. That item cannot be used in a query.
    kMDItemPath
    Complete path to the file. This value of this attribute can be retrieved, but can't be used in a query or to sort search results.

  • FOLDERS, On/Off sub-folders pre-view issue  (what do you think?)

    Yes, I see the benifit of how LRv1 is showing all the subfolders in the Main Folder. and Yes, tomrock has a solution that works.
    My problem is ... as LRv1 is now ... Folders as a File organizer does not show what is truely there. and can be somewhat confusing.
    The other issue is for those that already have there folders organized.
    What is logical ... and what you would "expect" to see in a Folders listing is exactly what is listed on Disk. (a true veiw).
    Now for more power (choice) ... yes, a On/Off for "show all sub-folders" in this folder is great and useful ... but it should be a choice, NOT a requirement.
    * In fact how I think it should work ... is you should be able to just go to ANY folder ... Right click and choose from a drop down menu ... turn On/Off the "show all sub-folders".
    It's all about choice. (not that one way is better)
    But, imho in order to File manage ... you NEED to at least start with the "true" veiw of what is on the your Disk (and be able to quickly and easily go back to it ... if you changed it)
    * When is ever a actual view of your folders on your Hard Disk a bad thing? or should not be "at the very lesst" A CHOICE?
    my little rant lol
    HG
    tomrock's work around ... it works ... I like it ... I just don't want to have to do it with all my folders I have aleady created.
    tomrock - 1:40pm Feb 22, 07 PST (#14 of 18)
    It is weird that Adobe turned this off after the beta. Another "solution" is to make your folders like this:
    Top level folder
    --Raws
    --Tiffs
    --Jpegs
    Of course, when you click the "Top level folder" you see everything and you have to open the triangle thingy to see the lower folders. I like this better than color coding files.
    And at least you can do this in LR.

    Brian,
    GREAT TIP ... and easy ... love it.
    Only two issues with LRv1 making you do it this way.
    1) there "should" be a Quick and FAST way for you to SEE exacly what is there ... like an ON/Off switch that you can get to from "just" right clicking on the Folder
    * at some point you just might want to see what is truly in your folders on your HD.
    2) If LR is not going to do this ON/Off switch ... which I think would not be logical ... Adobe should at least put the MetaData browser sort on a Menu choice ... that drops when you Right mouse click on the Folder.
    With that being said:
    "Props" to Adobe, ... as I learn more about Stacking and Versions, Ctrl+E, and Export w/Actions within LRv1 ... I am "Seeing" the Logic of what they are doing.
    It "will" change the way I work ... but, it will be for the better (I must admit) AND, I might "not" have changed if it was not for LRv1 forcing me to do so.
    HG
    Changing for the better ... kicking and screaming
    Brian Witter - 12:19am Feb 24, 07 PST (#20 of 20)
    Here is one more option if the top level is only raw or DNG and the sub folders are TIF and/or JPG.
    Select the top level folder
    Go to the Metadata Browser>File Type
    Ctrl(Cmnd) click Raw or DNG
    If you want to see more than one file type, but not all, just Ctrl click on the desired file type to add. To switch, repeat the Ctrl click on the file type you're done with.
    I'm hoping they'll add a switch to control viewing sub folders again so I plan to do it this way for now rather than add a new empty folder at the base of each branch in my folder tree.

  • How do I delete file extensions on files in sub folders?

    I want to delete all file extensions on the files I have in several sub folders.
    If I highlight the files themselves in a folder and run "Get Selected Finder Items", then "Replace Text in Finder Item Names", then it works. However, how can I have Automator choose ALL files in ALL sub folders of a folder and then do it's magic on all those files at once?
    Thanks.

    Does the Notebook software accept aliases? If so, you could rename aliases instead of the main file, so that the original extensions are preserved.
    For your original question, you can use an action to get the folder contents, and adding a filter action will just give you the file names - for example:
    1) *Get Selected Finder Items*
    2) *Get Folder Contents* (repeat for each subfolder found)
    3) *Filter Finder Items* -- remove items that are folders
    4) *Replace Text in Finder Item Names*

  • Folders and Sub Folders

    Hi,
    Could someone tell me if there is an easy way to open all the sub folders inside a folder?
    For example I'm sorting out my iTunes folder the itunes music folder has about 70 folders inside it and each one of them has other folders inside, I spend quite some time to open all of them and I just wondered if there was a shortcut?
    Kind Regards
    Adrian Vogel

    I don't know of a special command to +open all+, but you can select multiple folders in a Finder window, and issue the regular Open command from the File menu, or hit Command-O, or double-click on one of the selected folders. All the selected (highlighted) folder should open.
    You can select multiple items in a row using the click first - press Shift key - click last method.
    You can select multiple items NOT in a row by pressing Option and Command keys while clicking to select.
    Also, instead of opening a large number of windows, I find the +column view+ in a Finder windows to be useful.

  • Apple tv 2.2 wont sync sub-folders of photos

    Since I've updated the atv to 2.2, my photos that are organized into sub-folders within a folder won't sync.
    i like to keep my photos out of iPhoto, nicely organized into one Photos folder with one subfolder for each album. Till 2.1, i could goto iTunes -> Apple TV -> Photos tab, select the main Photos folder there and all the subfolders containing photos would show up. I could select all and the subfolders would sync to Apple TV. With 2.2 , this doesn't happen. I have all the options in iTunes but when i sync, it just shows Syncing and nothing happens. If i select one of the subfolders directly that contains photos, it syncs. That means 2.2 won't sync from sub-folders!! for me, it renders the device useless !
    Is there a way to revert back to 2.1 ?

    I am also having the same problem. My original Apple TV was version 1. The earlier version of this ATV and Itunes was able to sync photos in nested or sub folders direct from the hard drive and not using any photo program. I upgraded to 2.2 and kept the old files on my ATV and did not sync to Itunes for a long time but when I decided to sync all of my nested photo folders on the ATV were deleted and I could not re sync. I spoke to apple care support today and was advised the programming was not set up to read from sub folders. However Itunes and the apple TV directions say otherwise. I suggested to Apple they consider fixing the programming to follow what Itunes and the ATV manuals say. This is a very desired feature to have.

  • My Sub-folders in outlook 2013 is empty

    Hello ... I'm using Microsoft Outlook 2013 and I have @live.com mail, after I configured the mail over outlook and downloaded from server, i still can't find any email in my sub-folders (Example: Newsletters, folder
    it contains 326 mails and in outlook 2013 is empty ) ... and when i open my mail from browser i can see them there ... at the same time my
    Gmail account is totally sync all folders and working good.
    Thanks 

    Hi,
    How did you set up your live.com account in Outlook 2013? Via Exchange ActiveSync, IMAP or POP3?
    Please try to logon to your webmail, create a new subfolder under Inbox, then move all message in one problematic subfolder to the newly created one. After that, open Outlook 2013 and click
    Send/Receive All Folders button to check the result.
    If the you can see the messages in the new subfolder now, then move the messages back to the original subfolder to workaround this issue. You can perform the same steps on other subfolders which have the same problem.
    Please let me know the result.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Should the admin/user folder and all of its sub folders be moved to the hdd or just parts of it? (eg. picture, movies, documents)  What is the best way to go about doing this.  Also should a 2t hdd be partitioned.

    iMac with 256ssd and 2t hdd. Should the admin/user folder and all of its sub folders be moved to the hdd or just parts of it? (eg. picture, movies, documents)  What is the best way to go about doing this.  Also should a 2t hdd be partitioned.

    Yes, you can move your user directories to the HD and keep your OSX and Applications on the SSD drive.
    Whether you partition your HD or not depends on how much data you have and how you propose to use your HD.
    Are you planning to use your iMac as a Time Machine backup volume? If so, partition it off.
    Do you have huge data files, eg video, music, photos?
    How much of your 2tb drive will be "free" once it is loaded with all your data?
    A little more information is required before the optimal configuration can be recommended for your use.

  • Coping folder contents and sub folders

    So, I'm working on a little practice folder sync project (fun with my mac)...
    ...and I'v gotten hung up a bit because my little copying app doesn't seem to count folders and sub folders (which I suppose makes sense).
    My initial idea was to take just the date of modification and compare it to the last date that the app was run, inorder to only copy changed files. But this seems problematic on a few levels, so...
    So, my two part question is:
    1. Is there a simple command to copy folder contents and sub-folder contents, or do I need to tell the script to do each sub-folder individually?
    2. I imagine that a better way to manage which files/folders need to be updated is to create a file with a list of the contents, and dates of modification, and compare the new folder list and the old folder list to each-other... ok.. so, um. yeah. that sounds tricky.

    >1. Is there a simple command to copy folder contents and sub-folder contents, or do I need to tell the script to do each sub-folder individually?
    There are two common solutions to this.
    The first is to use the Finder's 'entire contents of...' command to get a list of everything in the folder, including sub-folders, the second is to make your script recursive - that is, it calls itself several times over.
    In the first case it's as simple as:
    tell application "Finder"
    set allItems to entire contents of folder "path:to:source:folder:"
    -- rest of code goes here
    end tell
    This can have problems, though, especially on very large directories since the Finder is not very efficient at building a list of hundreds or thousands of files.
    The recursive path is a little trickier, but you write a handler to process a folder then repeatedly call that handler, like:
    <pre class=command>on run
    set sourceFolder to (choose folder)
    processAFolder(sourceFolder)
    end run
    on processAFolder(theFolder)
    tell application "Finder"
    set allItems to items of folder theFolder as alias list
    repeat with eachItem in allItems
    if class of eachItem is folder then -- we have a subfolder
    processAFolder (eachItem)
    else
    -- code here to compare the file and back it up
    end if
    end repeat
    end tell
    end processAFolder</pre>
    So here you walk through the folder, each time you find a new folder, you walk through that until you're done. The code takes care of keeping track of where you are in the folder hierarchy.
    >2. I imagine that a better way to manage which files/folders need to be updated is to create a file with a list of the contents, and dates of modification, and compare the new folder list and the old folder list to each-other... ok.. so, um. yeah. that sounds tricky.
    There's no need to keep a file. Assuming you have two folders you can just walk through one of them checking to see if each item exists in the other, then copy the newer file to the other directory, like:
    <pre class=command>on processAFile(fileName, sourceDir, destDir)
    tell application "Finder"
    -- check if the files exist
    set sourceFileExists to (file fileName of folder sourceDir exists)
    set destFileExists to (file fileName of folder destDir exists)
    -- now comes the logic
    if sourceFileExists and not destFileExsits then
    duplicate file fileName of folder sourceDir to folder destDir
    else if destFileExists and not sourceFileExists then
    -- assuming you want a two-way synch
    duplicate file fileName of folder destDir to folder sourceDir
    else -- both files exist, so check mod dates
    if (modification date of file fileName of folder sourceDir) > (modification date of file fileName of folder destDir) then
    duplicate file fileName of folder sourceDir to folder destDir
    else if (modification date of file fileName of folder destDir) > (modification date of file fileName of folder sourceDir) then
    duplicate file fileName of folder sourceDir to folder destDir
    end if
    end if
    end tell
    end processAFile</pre>
    If you're not planning a two-way synch an even simpler option is to just keep track of the last time the synch was run. Then all you need to do on subsequent runs is ask the Finder for 'every file of folder sourceFolder whose modification date is greater than lastRunDate'.

  • Script to add 4 named sub folders on creation of new folder

    can anyone help me with a  script that creates 4 sub folders with specific names within  a folder when the new folder is created????

    Looks like this question was asked and solved here:
    http://stackoverflow.com/questions/17432796/create-folders-applescript

  • No longer able to group applications into folders in the Applications folder?

    I would like to group applications in Folders in the Applications Folder, which I have dragged back to to the dock.  This is the way I had managed apps in Snow Leopard.  I can create folders no problem,but when I try to drag apps into these folders, a copy is always left behind in the Applications folder.  How do I move the app?   I am not able to delete the copies that are left behind.
    My Account has Admin rights, and this is a clean install into an empty partition....I wanted to check out Lion before moving from SL.
    Launchpad is pretty, but I prefer the Applications Folder.

    It does cause problems in a number of circumstances.
    In this forum alone, there are several threads with many users who used Setup Assistant or Migration Assistant to transfer their stuff, ended up with lots of duplicate apps because of it, and had great difficulty finding and deleting the duplicates.
    There have also been folks whose apps did't get updated, and Adobe apps that wouldn't run at all.
    Again, it depends on the apps and circumstances.

Maybe you are looking for

  • How can I create a new OC4J Instance in Application Server Control

    Hi All, Is there any way to create a new OC4J Instance in Application Server Control of installed SOA Suite, so that it gets listed in Cluster Topology page. Thanks Krrish

  • My 2011 mac mini screen is black and has an "out of range" message

    My 2011 mac mini is hooked up to a monitor and it has a black screen with an "out of range" message. I'm not sure how to fix it. everything is plugged in. please help!

  • Zen Xtra -- Problems with downloading mu

    Hi! i'm having problems with loading audio files into the player My audio files are on Real Player, and i used the "sniffer" to find them. No problem. They are in the order that i want them to be in, when i burn a cd (or, in this case, when i load 'e

  • Covering Indexes

    Hi, I have two sets of conditions that I use in where clause to query my table: Select * from table1 where c1='xx' and c2='xx' and c3='xx' Select * from table1 where c1='xx' and c2='xx' and c4='xx' At this point I have this set of indexes on my table

  • Dual monitor workspace

    CS3. I'm using two monitors. I have saved a workspace in which all pallets appear on the main (left) monitor and the main ID window appears on the right. Lately ID doesn't seem to remember this configuration, everything opens on the left and I have t