At line 29 changed 3 lines |
Filename filters allow you to remove certain file types from being listed in directory listings, or from being uploaded or downloaded. Usually this will be like hiding files that start with a '.' (dotfiles). The __Add__ button can be used to add inbuilt rule types, where __L__ stands for __listing__, __D download__, __U upload__, __R rename__, __X delete__. The posistion on the filename string where we begin matching the filter: __S starts with__, __E ends with__, __C contains__, __R regular expression__ (matched against the whole filename). For a regular expression need to prepend the __REGEX:__ literal. The expression itself can be simple pattern or Java style regular expression. Finally, the filter itself.\\ |
Examples:\\ |
simple, upload ends with |
Filename filters allow you to remove certain file types from being listed in directory listings, or from being uploaded or downloaded. Usually this will be like hiding files that start with a '.' (dotfiles). The __Add__ button can be used to add inbuilt rule types, where __L__ stands for __listing__, __D download__, __U upload__, __R rename__, __X delete__. The posistion on the filename string where we begin matching the filter: __S starts with__, __E ends with__, __C contains__, __R regular expression__ (matched against the whole filename). For a regular expression need to prepend the __REGEX:__ literal. The expression itself can be simple pattern or Java style regular expression. Finally, the filter itself. Examples:\\ |
simple rule, block upload for files that end in .txt |
At line 35 changed one line |
pattern, upload regex |
pattern, block delete of .txt files with regex filter |
At line 37 changed 2 lines |
:UR:REGEX:.*\.txt; |
:UR:REGEX:^[a-zA-ZO-9_1-Is+()V]*$; |
:XR:REGEX:.*\.txt; |
At line 40 changed one line |
negated, listing ends with all except |
negated, list all except .pdf files |
At line 42 changed one line |
:LE:.pdf:! |
:LE:!.pdf; |
At line 47 changed one line |
A per-user notes field for the admins.\\ |
Notes about this user might be useful when keeping track of contact info for a user, or what the account is for.\\ |
At line 49 changed one line |
A field to add custom user attributes. These items can be referenced throughout CrushFTP for extra customizations. They are referenced with a {user_x_itemName}. So if you had an item named firstName you would reference it with {user_x_firstName}.\\ |
Extra text references allows you to make variables that can be referenced in places like the WebInterface forms. These items can be referenced throughout CrushFTP for extra customizations. They are referenced with a {user_x_itemName}. So if you had an item named firstName you would reference it with {user_x_firstName}.\\ |
At line 53 removed 23 lines |
|
|
|
|
|
|
|
|
|
|
|
|
[attachments|misc1.png] |
|
|
|
|
|
Notes about this user might be useful when keeping track of contact info for a user, or what the account is for. |
|
Extra text references allows you to make variables that can be referenced in places like the WebInterface forms. |
|
[attachments|misc2.png] |