English

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

; TOTAL COMMANDER ULTIMA PRIME

; Copyright (c) 2005 - 2023 TC UP Team <tcmdup@gmail.com>


; All rights reserved

; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF THIRD PARTY RIGHTS.
; IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
; DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
; OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
; USE OR OTHER DEALINGS IN THE SOFTWARE.

; TC UP NEW APPLICATION LIST TEMPLATE FILE

; USAGE
; The following types of files and directories can be created:
; 1. Single Directory (or File)
; Creates simple directory or file in chosen parent directory
; Example: DIRECTORY or FILE.txt

; 2. Multiple Parallel Directories (with files)


; Creates many parallel directories (using "|" special character as
delimiter) in chosen parent directory.
; You can also create files (in parent directory or in subdirectory).
; Example: DIRECTORY_1|DIRECTORY_2\FILE1.txt|DIRECTORY_3|FILE2.txt

; 3. Multiple Nested Directories (with file)


; Creates many nested directories (using "\" special character as delimiter)
in chosen parent directory.
; You can also create a file (in last subdirectory).
; Example: DIRECTORY_1\DIRECTORY_2\DIRECTORY_3\FILE.txt

; 4. Multiple Parallel\Nested Directories (with files)


; Creates many parallel and/or nested directories in chosen parent directory.
; You can also create files (in parent directory or in subdirectory) or a
file in last subdirectory.
; Example: DIRECTORY_1|DIRECTORY_2\SUBDIRECTORY_1\SUBDIRECTORY_2\FILE.txt|
DIRECTORY_3\SUBDIRECTORY_1|FILE.txt|DIRECTORY_4

; You can also copy a file from specified source location into specified
destination location:
; Predefined source file location is: \TCUPNew\Data\(LANG)\Files
; USAGE
; !COPY src=SOURCE_FILE dst=DESTINATION_DIRECTORY
; !COPY --> Predefined Command for File Copy
; src=SOURCE_FILE --> Source File to Copy (searching in Files directory)
; dst=DESTINATION_DIRECTORY --> Destination Directory (relative)
; You can use TC %COMMANDER_PATH% pseudo environment variable for source path, if
copied file is located in Total Commander subdirectory.

; EXAMPLE
; !COPY src=X\y.mp4 dst=X\Z
; !COPY src=D:\Test\X\y.mp4 dst=X\Z
; !COPY src=%COMMANDER_PATH%\MEDIA\Video\y.mp4 dst=X\Z

; FORBIDDEN CHARACTERS
; You CAN NOT use special characters or reserved words in file/directory names.
; Use "." character (full stop/period) ONLY for file extensions (to get to know
what is file or directory)!
; If you want to use "." as a part of file/directory name use special escape
character instead: _DOT_
; Special characters:
; \, /, :, *, ?, ", <, >, |
; Reserved words:
; CON, PRN, AUX, NUL, COM1, COM2, COM3, COM4, COM5, COM6, COM7, COM8, COM9, LPT1,
LPT2, LPT3, LPT4, LPT5, LPT6, LPT7, LPT8, LPT9
; -----------------------------------------------

You might also like