Hide ../ in listing of the (virtual) root directory
This commit is contained in:
parent
6a38212242
commit
2886d1fb07
|
@ -418,6 +418,10 @@ class DirListingHandler(FileBaseHandler):
|
||||||
# create path to item
|
# create path to item
|
||||||
itemPath = os.path.join(path, item)
|
itemPath = os.path.join(path, item)
|
||||||
|
|
||||||
|
# Hide "../" in listing of the (virtual) root directory
|
||||||
|
if item == '..' and path == DirListingHandler.targetDir.rstrip('/') + '/':
|
||||||
|
continue
|
||||||
|
|
||||||
# try to stat file for size, last modified... continue on error
|
# try to stat file for size, last modified... continue on error
|
||||||
stat = None
|
stat = None
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue