Help - Search - Members - Calendar
Full Version: Looking for an AddOn
Hydrogenaudio Forums > Hosted Forums > foobar2000 > General - (fb2k)
foofanatic
Hi,

I am looking für an AddOn that helps me to copy Music Files with one or two clicks Files from my Harddrive to the USB-Stick. It should look like:

RightMouse->Kontext Menu->"Copy file to X:"

It should be very fast wink.gif No scripts or things like that.


Thx

Anas
I second this request would be very useful.
kjoonlee
Open Windows Explorer, navigate to destination, and drag-and-drop files from foobar2000 to destination.

Or you could use the masstagger to copy the files.
foofanatic
QUOTE(kjoonlee @ Jun 28 2005, 03:32 AM)
Open Windows Explorer, navigate to destination, and drag-and-drop files from foobar2000 to destination.

Or you could use the masstagger to copy the files.
*



I know that way, but I want it easier and faster, i do not wanna open everytime my explorer.
Synthetic Soul
I assume you could do this with foo_openwith or foo_run with COPY "%_path%" X:\

I know you say "no scripts or things like that" - but I think you should just take what you can get...

Edit: I've had a quick play and foo_openwith seems the best implementation (mainly as you can minimise the shell windows).

Command name: Copy to X:\
Application Path: CMD.EXE
Pre parameters:
Main parameters: /C COPY "%_path%" X:\
Post parameters:
Launch minimised: Checked
Call the command once per group: Unchecked

Make sure the preview is something like:

CMD.EXE /C COPY "C:\My Music\Bloc Party\Silent Alarm\09 - Price Of Gasoline.mpc" X:\

It's not ideal as it will launch a shell (minimised) for each file - but it work heap good.

Edit 2: Alternatively, save the code below as "copy.bat" and then use:

Command name: Copy to X:\
Application Path: "<path to file>\copy.bat"
Pre parameters:
Main parameters: "%_path%"
Post parameters:
Launch minimised: Checked
Call the command once per group: Checked

The benefit is that only one shell window will open.

CODE
@ECHO OFF

ECHO Copying files...

:Do
IF [%1] EQU [] GOTO :EOF
COPY %1 X:\ >NUL
SHIFT
GOTO :Do
Noodlewitt
http://www.theeldergeek.com/send_to_menu_command.htm

Try this... i havnt seen it working though.
Hamallainen
QUOTE(Synthetic Soul @ Jun 28 2005, 01:56 PM)
Edit 2: Alternatively, save the code below as "copy.bat" and then use:

Command name: Copy to X:\
Application Path: "<path to file>\copy.bat"
Pre parameters:
Main parameters: "%_path%"
Post parameters:
Launch minimised: Checked
Call the command once per group: Checked

The benefit is that only one shell window will open.

CODE
@ECHO OFF

ECHO Copying files...

:Do
IF [%1] EQU [] GOTO :EOF
COPY %1 X:\ >NUL
SHIFT
GOTO :Do

*


Thanks a lot , it works well and it s really helpfull
maltedcoffee
The foo_playlist_tree plugin can do that. It has a function of right clicking any file in the tree and then using "send to device" to copy that file to a location that is specified in the plugin's preferences. Note that the plugin is marked as "still very experimental (beta stage)" in these forums. Anyway, it works fine for me...
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Invision Power Board © 2001-2008 Invision Power Services, Inc.