Disable the Lock Screen in Windows 10
Delete empty folders recursively
for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"
Disable the Lock Screen in Windows 10
Delete empty folders recursively
for /f "delims=" %d in ('dir /s /b /ad ^| sort /r') do rd "%d"
| import csv | |
| import urllib.request | |
| import binascii | |
| from pathlib import Path | |
| def downloadTSV(): | |
| print('Downloading PS3_GAMES.tsv...') | |
| url = "http://nopaystation.com/tsv/PS3_GAMES.tsv" | |
| urllib.request.urlretrieve(url, 'PS3_GAMES.tsv') | |
| return 1 |
| import csv | |
| import urllib.request | |
| url = "http://nopaystation.com/tsv/PS3_GAMES.tsv" | |
| print('Downloading PS3_GAMES.tsv...') | |
| urllib.request.urlretrieve(url, 'PS3_GAMES.tsv') | |
| newlist = [] | |
| with open('PS3_GAMES.tsv', newline='', encoding="utf8") as csvfile: | |
| listreader = csv.reader(csvfile, delimiter=' ', quotechar='"') |