Chris Pepper
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py
|
|
@ -31,7 +31,7 @@ try: |
|
|
|
# |
|
|
|
import subprocess |
|
|
|
# typical result (string): 'Drives: C:\ D:\ E:\ F:\ G:\ H:\ I:\ J:\ K:\ L:\ M:\ Y:\ Z:\' |
|
|
|
driveStr = subprocess.check_output("fsutil fsinfo drives") |
|
|
|
driveStr = subprocess.check_output("fsutil fsinfo drives").decode('utf8') |
|
|
|
# typical result (string): 'C:\ D:\ E:\ F:\ G:\ H:\ I:\ J:\ K:\ L:\ M:\ Y:\ Z:\' |
|
|
|
driveStr = driveStr.strip().lstrip('Drives: ') |
|
|
|
# typical result (array of stings): ['C:\\', 'D:\\', 'E:\\', 'F:\\', |
|
|
@ -44,7 +44,7 @@ try: |
|
|
|
for drive in drives: |
|
|
|
final_drive_name = drive.strip().rstrip('\\') # typical result (string): 'C:' |
|
|
|
try: |
|
|
|
volume_info = subprocess.check_output('cmd /C dir ' + final_drive_name, stderr=subprocess.STDOUT) |
|
|
|
volume_info = subprocess.check_output('cmd /C dir ' + final_drive_name, stderr=subprocess.STDOUT).decode('utf8') |
|
|
|
except Exception as e: |
|
|
|
continue |
|
|
|
else: |
|
|
|