Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Adding copy to c:\files on send to menu
Name: Nick Date: November 26, 2001 at 13:07:21 Pacific
Comment:
I have tried to create a batch file: copy %filename% c:\files
and put it in the send to folder however it does not work. Does anybody know how I would be able to add an icon onto my send to menu to send a file to the c:\files folder? or how I call the filename which was clicked into a batch file.
Name: matt Date: November 27, 2001 at 02:46:47 Pacific
Reply:
ok I'm not sure if this will be any help but :-
1. Find your C:/files folder 2. Copy your C:\files folder 3. find the 'sendto' folder (do a find folder for it) 4. Paste as shortcut your c:\files folder
When you next right-click on a file or folder you will have the option to sendto your c:\files folder.
That is how you do it in windows. If you need to actually program it into an application then repost and I'll work out a solution.
Summary: I cant help you with unix scripts, but here's a batch for windows. It will copy every jpg file on d: and add the keyword "something" to the filename. ::-----CODE----- @echo off set keyword=something...
Summary: Batch file adding text to file also adds a return? (Damn 35 character subject limits ;)) Hi there. Working on a very simple batch file; all it does is add a single sentence to a text file, then conver...
Summary: Below is a batch file I created. What I would like for it to do is copy the master file on a daily base or each time it is updated from the network to the clients. The file is set to run during logon...