
It's not so easy to understand, but with a little help it's finally a powerful tool for "non-programmers".
Thanks to MVV for this wonderful plugin.
Moderators: Hacker, petermad, Stefan2, white
The script >Aktuell starts only with AutoUpdateName=>Aktuell and not with AutoUpdateName=AktuellMVV wrote:This is the right setting! You need to set only filename.
Code: Select all
[Virtual Panel]
AutoUpdateScriptName=>Aktuell
EnableAutoScripts=1
DefFileList=%Commander_Path%\Log\virtfilelist.txt
LogPath=%Commander_Path%\Log\VirtualPanel.log
LogEnabled=1
VirtualFolderIcon=
Code: Select all
Error in batch file! Script should begin with '<'!
\Videos\Movie1\>Aktuell
Yes, because filename is >Aktuell and not Aktuell.ate wrote:The script >Aktuell starts only with AutoUpdateName=>Aktuell and not with AutoUpdateName=Aktuell
I see, thanks for this report. Seems that plugin tries to execute non-existent script file. I'll fix it in next version.ate wrote:But If I change to these subfolders (Movie1, Movie2 ...) I get (again) the error:Code: Select all
Error in batch file! Script should begin with '<'! \Videos\Movie1\>Aktuell
This happens because you specified wrong mask for <del command. Seems that your <put command adds * and your <del command removes *.*. So, your <put command adds all folders but <del command doesn't remove them because mask *.* doesn't match. So, you need to turn eas off, to change <del *.* to <del * in script, to set read-only attribute for script and to turn eas on again. Or you may set mask like *.* for <put command - so it won't add folders.ate wrote:If I copy a folder (e.g. MovieTest) to the real movie-folder (e.g. D:\Filme\MovieTest), I see this folder in VP after a refresh. Fine. But if I delete the real folder MovieTest (in "real" TC and not over the VP), then the folder MovieTest is still shown in VP after a restart.
If you mean folder inside virtual folder, you can. But if you mean folder inside real folder, its impossible because it just shows contents of real folder. So, you can't rename any folder or folder inside of folder that was auto-created using <put command. You may rename only thoose folders that you created personally (via F7 or copy).ate wrote:Is there a chance to permanent rename the folders in the VP (e.g. Movie1 to MyMovie1) ? Now I must change to the real folder and do it there.
I think its bad idea 'cause FS plugin is very limited in functions. You can't call VP scripts or use any other functions if you have no VP panel active. Sorry.gsi wrote:Is it possible to make a saved file (with a certain extension) be imported to Virtual Panel through pressing the Enter key so that the user could enter this file as you enter the folder the same way it is implemented in a relevant plug-in of Far Manager?
The existing import option is not convenient for work. If you improved your plug-in as proposed above, it would become invaluable.
Code: Select all
<add \Loaded<add \Loaded\>RefreshNew {<silent<del /r \Loaded\*<load "%TEMP%\AutoLoad.lst" \Loaded}
Code: Select all
@echo off
copy /Y "%1" "%TEMP%\AutoLoad.lst"
start "TC" C:\TOTALCMD\TOTALCMD.EXE /O /S /L="\\\Virtual Panel\Loaded"
It's a misfeature, I know about it:)Roko wrote:Hello. I use this plugin. I found a minor bug.
if I rename a folder or a file change only letter caps (GAme -> Game) in virtualpanel, an error occurs
"Cannot write \\\Virtual Panel\GAme! Please remove the write protection!"
TC doesn't say if it tries to rename only, it just asks for moving in function FsRenMovFile.Balderstrom wrote:When rename is called check if the lowerCased string is the same in both New & Old filename. If so do a multistep rename.