Page 1 of 1
slashes-aware creation of folders and files
Posted: 19 Apr 2011 16:12
by tiago
slashes and backslashes could have a role in the creation of folders instead of just producing standard errors. Naming a folder "name1\name2" could result in a "folder\subfolder", if the user sees that as not expected, it's easy for him to delete the folder. Naming a file "name1\name2.ext" could create a "subfolder\zero-byte file" and so on. Perhaps a tweak for this so more experienced users will know what's going on.
Re: slashes-aware creation of folders and files
Posted: 02 May 2011 07:53
by admin
There is a tweak for this:
Code: Select all
v6.80.0098 - 2008-03-05 12:52
+ List: Now there's "Move On Rename", a cute little time saver that
enables you to move & rename files in one go. Simply enter a
relative (to the current path of the file!) or absolute path into
the inline rename box (F2) and "Move On Rename" will happen. If
the new folder (or multi-folder path!) does not exist yet, you
will be prompted to create it on the fly. Note that "Move On
Rename" does work only for one item at a time.
For example, select a file in the List and enter this into the
rename box:
- C:\new.png = Move file to C:\ renaming it to new.png.
- C:\1\2\3\new.png = Move file to C:\1\2\3 renaming it to
new.png. If "C:\1\2\3\" does not exist it is created.
- ..\new.png = Move file one up renaming it to new.png.
- stuff\new.png = Move file one down to subfolder "stuff"
renaming it to new.png. If "stuff" does not exist it is
created.
For logistic reasons this is currently only implemented as an INI
tweak. You have to manually enable it by editing the INI file:
[Settings]
AllowMoveOnRename=1
It might be time to elevate it to the UI! Has anybody used this feature at all?
Re: slashes-aware creation of folders and files
Posted: 02 May 2011 08:58
by serendipity
admin wrote:There is a tweak for this:
Code: Select all
v6.80.0098 - 2008-03-05 12:52
+ List: Now there's "Move On Rename", a cute little time saver that
enables you to move & rename files in one go. Simply enter a
relative (to the current path of the file!) or absolute path into
the inline rename box (F2) and "Move On Rename" will happen. If
the new folder (or multi-folder path!) does not exist yet, you
will be prompted to create it on the fly. Note that "Move On
Rename" does work only for one item at a time.
For example, select a file in the List and enter this into the
rename box:
- C:\new.png = Move file to C:\ renaming it to new.png.
- C:\1\2\3\new.png = Move file to C:\1\2\3 renaming it to
new.png. If "C:\1\2\3\" does not exist it is created.
- ..\new.png = Move file one up renaming it to new.png.
- stuff\new.png = Move file one down to subfolder "stuff"
renaming it to new.png. If "stuff" does not exist it is
created.
For logistic reasons this is currently only implemented as an INI
tweak. You have to manually enable it by editing the INI file:
[Settings]
AllowMoveOnRename=1
It might be time to elevate it to the UI! Has anybody used this feature at all?
Yes, i use it occasionally. Such little gems should be made more public. And ofcourse, it should be disabled on fresh install.
Re: slashes-aware creation of folders and files
Posted: 02 May 2011 10:39
by grindax
.