I have a simple script written in Python:
import os
def Path(SourcePath):
for Folder in os.listdir(SourcePath):
print "TESTING: %s" % Folder
Path("\\\\192.168.0.36\\PDFs")
When i run this it recurses through a remote share on the LAN and just simply displays the names of the folders found. This share primarily contains folders.
The problem is that if a folder name has a space at the end of it's name, the above script lists jibberish.
For example, if i have the following folders in the above share:
- "6008386 HH - Walkers Crisps"
- "6008157 CPP - Santas Chocolate "
- "6007458 SCA - Morrisons Bananas"
Notice that "6008157 CPP - Santas Chocolate " has a space at the end. This is the listing from the above script:
- "TESTING: 6008386 HH - Walkers Crisps"
- "TESTING: 6EBA72~1"
- "TESTING: 6007458 SCA - Morrisons Bananas"
How can i avoid this while recursing the remote dir? I could fix the folder name if only it was returned properly by 'os.listdir()'.
Any ideas on how to tackle this?