Sort by folder structu

on the 6GB creative zen can i
i hate it when palyers sort by artist or album. i have all my music divided into folders and would like to use it as it is without having to edit tags.
is there any other mp3 palyer that can sort music by folder structure?

There is no way to do this on the Zen. I hate it too. Why does the player assume that I'm so dumb that it doesn't even allow me to navigate a folder structure on my own? GRR.
There are lots of players that do this, but not the Zen.

Similar Messages

  • Sorting in Folder block of customer entry form

    In Customer Entry form, the folder block ORG_NS_FIND_FOLDER is being sorted on org_per_number,customer_number.
    We are customising this form and would like to override the default sorting and use our sort columns.
    Can anyone please let me know where is the code that is doing this sorting on org_per_number,customer_number. I want to replace it with mine.
    Thanks in advance
    Murthy

    It would be good if anyone atleast let me know how to provide the column names for sorting my folder block

  • Sort by folder size

    Hello every one! I have this script:
    $log = ".\logfile.log"
    $startFolder = "C:\VMs"
    $colItems = Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq $True} | Sort-Object
    foreach ($i in $colItems){
    $itemSum = Get-ChildItem ("$startFolder\" + $i.Name) -recurse | Measure-Object -property length -sum
    "$startFolder\$i -- " + "{0:N2}" -f ($itemSum.sum / 1KB) + " KB" >> $log
    import-csv $log -delimiter "`t" | export-csv .\TEST.csv
    $body = Get-Content $log | Sort | Out-String
    Send-MailMessage -From [email protected] -To [email protected] -Subject "Test Theme" -attachment .\TEST.csv -Encoding ([System.Text.Encoding]::UTF8) -Body $body -SmtpServer test123.test.local
    Remove-Item $log
    Remove-Item .\TEST.csv
    When this script done I
    receive something like this in email message:
    C:\VMs\Backup -- 0,00 KB
    C:\VMs\Vbox -- 82 874 750,42 KB
    C:\VMs\VMWARE_BACKUP -- 182 818,77 KB
    How I can change this script to sort by folder size?
    Not alphabetically.
    Thanks in advance!

    Hello Darkwind,
    you can do this, but it'll require some reformatting your script. I've done the honors:
    $startFolder = "C:\VMs"
    # Get folders
    $colItems = Get-ChildItem $startFolder | Where-Object {$_.PSIsContainer -eq $True} | Sort-Object
    # This one will do the measuring for us
    $fso = New-Object -ComObject Scripting.FileSystemObject
    # iterate over each folder and measure length
    $FolderReport = @()
    foreach ($i in $colItems)
    # 1: Get Size
    $folder = $fso.GetFolder($i.FullName)
    $size = $folder.size
    # 2: Set Properties in a hashtable
    $props = @{
    name = $i.FullName
    size = $size
    displaysize = (("{0:N2}" -f ($size / 1KB)) + " KB")
    # 3: Add to results
    $FolderReport += New-Object PSObject -Property $props
    # Sort results
    $FolderReport = $FolderReport | Sort size
    # Build CSV attachment
    $FolderReport | export-csv .\TEST.csv
    # Build body
    $lines = @()
    $FolderReport | %{$lines += ($_.name + " -- " + $_.displaysize)}
    $body = $lines -join "`n"
    # Send mail
    Send-MailMessage -From [email protected] -To [email protected] -Subject "Test Theme" -attachment .\TEST.csv -Encoding ([System.Text.Encoding]::UTF8) -Body $body -SmtpServer test123.test.local
    # Cleanup file
    Remove-Item .\TEST.csv
    As you can see, some slight modifications :)
    Now, just what did I change ...
    I used the Scripting.FileSystemObject Comobject to measure size, since that's a bit faster.
    When selecting the size, I built custom objects containing the information (Name & size), since if we want to sort by size, we need to keep it as a separate property.
    Then I sorted by size, and exported the result into a csv file for attachment
    I built the body from strings in memory - no point writing it to a file, just to reread it. (that "`n" should work as a linebreak)
    Cheers,
    Fred
    There's no place like 127.0.0.1
    Thank You! It's work for me!
    But this script first shows the
    folders from the small to the larger
    size. Is it possible to do the opposite?

  • Sort iTunes folder by album

    I have a lot of music in an iTunes folder on a backup drive. I want to be able to sometimes take some of it and replace the existing music on my iPod. iTunes, however, has organized the music on the backup drive by artist. This is fine for most albums, but for some albums it just creates a mess. For instance, to load a Christmas album where each track is by a different artist, I would have to remember each artist’s name, and use that information to find and load each individual track separately. (This is an especially huge problem for classical albums,where different tracks commonly feature different artists.) Does anyone know a way to, maybe, organize the whole iTunes folder by album instead? Or shareware that does this? It would completely solve the problem.
    I believe that for future albums I can save them as compilations and they will sort more usefully. But what’s the solution for albums that iTunes has already saved?
    Sorry if this is an old topic.

    ahhh, that must be it!
    i see that folder but don't know how stuff got in there.
    how do i mark music to go there?
    or do i have to drag it manually?
    sorry--i'm a little lost
    thank u!

  • Sort taxonomy folder manually

    Hi,
    I want to sort my taxonomy folders manually within an iView. This is possible for normal/standard KM-Folders, but not for taxonomy structures.
    Has anyone an idea how to realize manual sorting of these folders?
    Thanx
    Christoph

    There is a hidden CM repository called /taxdata, used by your taxonomy.
    Navigate to this folder by entering in the following URL :
    http:/host:port/irj/go/km/navigation/taxdata?StartUri=/
    Here, go to folder details -> settings -> manual ordering -> enable manual ordering.
    Order this folder and your taxonomy will appear ordered in your KM navigation iView.
    > please reward points if this is helpful <

  • Sorting in "Folder pane" -- LR4-Library mode

    How do I sort my folders in the Library mode -- on the left "folders panel" -- by default it sorts alphabetically -- how do I change that default?

    You can't.
    Just use a naming convention that matches alphabetically what you want to achieve.
    Cornelia

  • How can I sort files in a folder by name?

    How can I sort files in a folder by name? iFS first sort files that starts with upper-case letter and then files with lower-case letter.
    Like:
    A_file
    B_file
    a_file
    b_file
    I want:
    A-file
    a_file
    B_file
    b_file
    This doesn't help:
    String[] sort_attributes = {"NAME"};
    boolean [] sort_orders = {true};
    SortSpecification sort = new SortSpecification(sort_attributes, sort_orders);
    currentFolder.setSortSpecification(sort);
    Do I have to get all items in a folder and then sort them?
    /Elin

    I do not think there is a way to do that without add-ons
    There are a couple of workarounds I am aware of
    * Add the bookmarks manually in the bookmarks library and choose the position. That is using Show all bookmarks -> open required folder -> select a position and right click -> add new bookmark <br />Rather a slow and clumsy process
    * Sort a folder and copy it. If you sort the folder contents then copy and paste them they remain in that order when pasted.
    There are add-ons but I have not tried them. For example
    * https://addons.mozilla.org/firefox/addon/simplesort-bookmarks/
    * https://addons.mozilla.org/firefox/addon/auto-sort-bookmarks/
    There will be others available and take note of the advice to backup bookmarks manaully.
    * [[Restore bookmarks from backup or move them to another computer#w_manual-backup]]_manual-backup

  • Is there a way to sort files in a folder by file name in elements 11?

    When I want to print a contact sheet, I need the files pictures in the file name order. Elements 9 had this feature.

    I have different needs, but I agree the lack of alphanumeric sort should be fixed. In my situation, it would be enough to have an option to automatically sort an album in alphabetical order. I would also like a sort by caption for albums.
    In your case, that is with too many files in folders, the nearest workaround I have found would be:
    - Select the images you need to sort (a folder for instance) and export them without changing names in a new folder.
    - Import the result into the organizer.
    - Select all files in the import batch and assign them a common date stamp.
    Your copies should be shown in file name order, in thumbnail, folder or batch import view. But the date taken will be lost...
    A solution could be to select both the original images and the edited ones, use the 'automatically suggest stacks' based on visual similarity. You won't lose the date information, but at the cost of twice the disk space.

  • How can I sort bookmarks within a folder by date such that this is apllied not only in the library but also on the toolbar?

    Hello,
    I have several folders on my firefox toolbar which I use to sort new bookmarks by topic. If I add a new bookmark to a folder it is alwas placed at the bottom (below existing bookmarks) which is somewhat annoying with a increasing number of bookmarks. I would like to have the bookmarks recently added at the top of the folder (above existing bookmarks).
    It's no problem to sort them this way within the library. But back at the toolbar everthing remains the same. The only option that seems to work here ist 'sort by name'.
    Is there any way to sort the bookmarks by 'date added' such that new bookmarks are placed on top and this is applied also outside the library?
    I hope you get my problem!
    Thanks!

    I do not think there is a way to do that without add-ons
    There are a couple of workarounds I am aware of
    * Add the bookmarks manually in the bookmarks library and choose the position. That is using Show all bookmarks -> open required folder -> select a position and right click -> add new bookmark <br />Rather a slow and clumsy process
    * Sort a folder and copy it. If you sort the folder contents then copy and paste them they remain in that order when pasted.
    There are add-ons but I have not tried them. For example
    * https://addons.mozilla.org/firefox/addon/simplesort-bookmarks/
    * https://addons.mozilla.org/firefox/addon/auto-sort-bookmarks/
    There will be others available and take note of the advice to backup bookmarks manaully.
    * [[Restore bookmarks from backup or move them to another computer#w_manual-backup]]_manual-backup

  • Why can't a folder sort preference be independent of that of another folder?

    I have folders I want sorted manually, others by creation date (reverse), and others by filename. Yet, Bridge, inexplicably, changes all sorts to whatever you just sorted.
    I never really noticed this until I spent 3 hours doing a manual sort on folder A. Switched to folder B. Sorted that by filename. Came back to folder A and it was now sorted on filename. When I changed it back to manual I was disappointed to see that all my work was lost.
    This is real strange, Adobe. Why do you do this? Or...am I misssign somehting?
    Thanks,
    Mark

    You should not have lost all of you work.  Bridge saves the manual sort order in a hidden file named “.BridgeSort” in the folder with the images.  You can change the sort order to anything else and change it back to Sort Manually and Bridge will restore your manual sort order.  You can visit other folders, change their sort order, close and reopen bridge, reboot your computer, and still return to the original folder and choose sort manually, and Bridge will restore you manual sort for that folder. As long as you don’t delete the “.BridgeSort” file, this is how it is supposed to work and how it always works for me on my Windows 7 PC.  Try showing hidden files and make sure the hidden file is still there.
    Chuck

  • Please fix Folder Sorting in next upgrade

    Every time I reopen my project I have to re-select the List View Sort or my preferred Arrangement sorting.  Surely if I have saved the project then it should be able to remember how I like my files sorted - which in my case is Alphabetical.
    It is a minor thing but it is very irritating having to re-sort every folder every time.
    If I am doing something wrong and this is already in place can you let let me know
    Thanks

    I have been testing different scenarios and have been able to keep this from occurring under 10.5.2. Let me start by saying that I have had these issues happen on my Mac Mini.
    Everytime I have enabled "Use Simple Finder" AND "Only allow selected applications" TOGETHER has resulted in the parentalcontrols process to run away. Everytime I have disabled these two settings and kept all the other Parental Control settings as I had it before, the parentalcontrols process has NOT consumed all the CPU cycles.
    Give this a try and see if this helps. What helps is to have the Activity monitor open while doing this. Disable all Parental Controls first, Force Quite the parentalconcrols process, then re-enable the Parental Control on the accounts you need, keeping away from setting both "Use Simple Finder" and "Only allow selected applications" together.
    Also I read somewhere that disabling fast user switching would help. I have kept my fast user switching turned ON.
    Hope this helps.

  • Smart Folder - Sort in alphabetical order

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/809560''
    Hi,
    Is there an option to sort Smart Folder in alphabetical order?
    Thanks!
    Stéphane

    ''locking as a duplicate - https://support.mozilla.com/en-US/questions/809560''
    Hi,
    Is there an option to sort Smart Folder in alphabetical order?
    Thanks!
    Stéphane

  • How do I sort ALL my bookmarks into alphabetical order with ONE CLICK?

    This functionality does not - nor has ever existed in any version of Firefox. (as far as I remember)
    This question has been asked multiple times - and the answer is usually incomplete or too time consuming (especially for those of us who have over THREE THOUSAND bookmarks separated in hundreds of folders)
    The only decent answer - used to be - to install an addon called SortPlaces: https://addons.mozilla.org/firefox/addon/9275 - though for some reason the developer was offended by those in control of Mozilla and has pulled all of his addons from every site that is easily accessible - the newest version of firefox has broken this add on - and Firefox has a very useless sorting system. --
    Sorting your bookmarks - one folder at a time - using a right click option - that only works when you 'view -toolbars-bookmarks' (or when you right click within the bookmark menu system) is a pitiful system -
    Why can't you sort it when in 'bookmarks - show all bookmarks' ?? (well you CAN sort it there - but it will revert back to its un sorted form upon closing the interface)
    Why can't you export it into a json - or html - then sort using a text editor - or some other program - then re import?
    With the promotion of your online bookmark sync system you would think that something as simple as SORTING would have been covered...
    Other topics comparable - with answers that are not valid:
    1 https://support.mozilla.org/en-US/questions/760184
    cor-el suggested right clicking each folder individually - or using the sourtplaces addon (which is no longer available)
    2 https://support.mozilla.org/en-US/questions/837928?as=aaq
    various people suggest using the sort places add on.
    3 https://support.mozilla.org/en-US/questions/752997?as=aaq
    SortPlaces is mentioned again - along with a link that looks REALLY OFFICIAL - and that link also suggests using the SortPlaces - the link says its not available at mozilla but can be found elsewhere -- but the latest firefox has broken it - so its useless now...
    the-edmeister suggested:
    http://kb.mozillazine.org/Sorting_bookmarks_alphabetically
    Not sure what happened with the developer of Sortspaces - I never used any of his addons or had any dealings with him - but he is certainly unhappy with the folks behind Firefox.
    http://www.andyhalford.com/
    and HOORAY for Bookmark Duplicate Detector 1.1.1 https://addons.mozilla.org/en-US/firefox/addon/bookmark-duplicate-detector/?src=search (helped me get rid of over 700 duplicate bookmarks - got me down to 3400 total; the auto remove all does not work with firefox14 but the rest of it works fine- I just had to manually push delete over and over again for a few hours...)
    - and the checkCompatibility 1.3 that allows me to load out of date add ons: https://addons.mozilla.org/en-US/firefox/addon/checkcompatibility/
    The CheckCompatibility allowed me to install the Sort Bookmarks add on - and it looks perfect - but will not properly function...
    I hope my post helps others who are trying to sort their bookmarks - and I hope someone has an answer for some of my questions - preferably the title question... lol

    I've been watching this (general) thread for years and waiting patiently for Mozilla to address it, w/out any success at all - obviously. And, no, the answers are NOT helpful to me!
    I understand many people have no interest in bookmarks but clearly lots of people still use them. If you're going to have the feature that purports to sort bookmarks, for pete's sake, make it work. I'd think it would be an embarrassment to have a part of your program malfunction for so long. I mean, what are you folks? IE!?! Why don't you just ask someone to spend a couple days addressing the issue and get it straightened out? (Clearly i care enough about it but I don't code, so… I'm useless.)
    For the record, a user shouldn't have to individually sort each folder within their Bookmarks folder. One should be able to pick an option that would apply to all folders. Sure, leave the ability to sort individually but add an "apply to all" feature to the mother folder. Then, find a way to have it automatically maintain that status, whatever is selected. Doesn't sound like that difficult a task, given all the other great things you guys and girls do all the time! That's my ¢.
    By the way, I'm using a MB Pro 4,1 (early 2008), OS 10.6.8, and Firefox 19.0 beta. Thanks for listening to my bitching.
    - cheers

  • Iphoto has lost connection with its folder

    Hello,
    One day I turned on my mac, opened iPhoto and found it empty. I've read various threads and know not to be alarmed as I can see the folder of my pics is still there.
    I am however having trouble re-connecting iPhoto to this folder. In the past iPhoto has sorted the folder into numerous sub-folders accredited to the year in which the photos were taken. I cannot connect to the main folder that will include these sub-folders. It always wants me to connect iphoto to a folder with only pics in and not a folder with other folders inside.
    Am I going to have to go through the laborious business of moving all my photos into a single folder that will then communiacate with iphoto?
    Thanks.

    See if you can rebuild your library with iPhoto Library Manager 3.
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download IPhoto Library Manager 4 for OS XC 10.6.8 and iPhoto  8.1.2 and later  or iPhoto Library Manager 3 (for OS X 10.5.8 and iPhoto 7.1.5 and earlier) and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu (iPLM 3) or Library ➙ Rebuild Library menu (iPLM 4) option.
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • How can I move pictures from Finder to a folder on my main screen?

    I'm trying to put a bunch of photos that are currently in Finder into a folder on my main screen so I can drag them easily onto photo printing sites. How do I do that?
    Thanks!

    Thanks! But I have like 100 pictures………is there a way to do them as a group instead of individually?  I also want them in some sort of folder not just 100 individual photos all over the main screen. Is there a way to create that?

Maybe you are looking for

  • Split File in File Sender

    Hi, I have a source file that can be up to 4MB's and I want to Split it for every 10,000 records in the file. I can't use "Recordsets per Message" because my file has a single Header and multiple Detail records. Is there any way to split this message

  • Any dock compatible with the Apple official Bumper?

    I am looking for a dock to buy for my iphone 4 that is compatible to work with the bumper on it. I do not want to remove the bumper every time i want to charge the phone as it makes the bumper stretch a little more each time. Any suggestions, I don't

  • Can't modify a Bex query, it is tied to a released transport

    Hello BW expert, I could not change a existing Bex query. It is always tied to a released transport. I have tested I can create a new BEx query and transport it to QA without errors. The issue is when I opened an existing query, it has a error. Bex t

  • YOUR ITEMS HAVE BEEN CANCELED

    Hi, I would like to have a full explaination about why my purchase was cancelled. Order number: (Removed per forum guidelines) I called in and was told that there was an error on the international shipping information on Best Buy's end and that cause

  • Saving more raw files as jpeg

    I have Photoshhop CS3 and Windows XP. I have saved a number of raw photos in Camera Raw as jpegs and have more to save. But now I get dialog box saying there is not enough memory to save. It can't be a hard storage issue as my hard drives are less th