ATTENTION: You are viewing a page formatted for mobile devices; to view the full web page, click HERE.

DonationCoder.com Software > Post New Requests Here

IDEA: sort each file into separate folder

<< < (2/3) > >>

AbteriX:
If someone is interested i can show how to do such things with XYplorer scripting,
then you have this always with your file manager:


--- ---//Test with test files in an test folder on an second pc in an virtual machine first
"Sort files into folder according base name"
 global $criteria, $curitem;
 $action = input("Action: Copy or Move files?", "Choose from ""copyto"" and ""moveto""", "copyto");
 sel 1;
 while(1){
   $curitem = "<curitem>";
   //check if $curitem is an file:
   if (exists($curitem)==1) {
      $criteria = "<curbase>";
            //check if the folder already exist:
            if (exists("<curpath>\$criteria")==2){
                //msg "This is an file and $criteria-dir already exists.";
                sub "_$action";
            }else{
                //msg "This is an file and and we have to create $criteria-dir.";
                new $criteria, dir;
                sub "_$action";
                sel 1;
            }
   }else{
     //msg "This is an dir, we will skip this item";
   }
   sel +1;
   end (<curitem>==""), "Last item reached. Script ends.";

"_Moveto"
 global $criteria, $curitem;
 moveto "<curpath>\$criteria", $curitem;

"_Copyto"
 global $criteria, $curitem;
 backupto  "<curpath>\$criteria", $curitem, 3;


IDEA: sort each file into separate folder

adrienne:
Skwire,

Yes, that's what i mean. I want to highlight them in Windows Explorer, and have them automatically sorted into folders without having to manually type filenames!

SingingBoyo:
Hmm, looks like I missed a rather important sentence in that he wants to highlight the files from the manager... Guess that discards my app.  Extraordinary bugs dealing with this kind of file stuff in java anyway, I must say I'm rather glad to be rid of it.

mouser:
i'm sure we'll come up with some different requests for you singingboyo :)

skwire:
Yes, that's what i mean. I want to highlight them in Windows Explorer, and have them automatically sorted into folders without having to manually type filenames!-adrienne (April 01, 2010, 02:52 PM)
--- End quote ---

Please give the latest interim build of Files 2 Folder a try and see if it works as you envisioned.  I've tested it under XP only.  Read the help.txt file for installation and usage instructions.

Download 'Files 2 Folder' v1.0.5.3

If it passes muster, I'll promote it to v1.0.6.  Thanks.

Navigation

[0] Message Index

[#] Next page

[*] Previous page

Go to full version