i want to format a drive using subprocess and getting the windows command prompt to pop-up to see the results, but when doing this:
subprocess.Popen(["FORMAT", drive, "/FS:FAT32", "/A:32K"], shell=True).communicate()
i get this error:
WindowsError: [Error 2] The system cannot find the file specified
any help?
shell=TrueI believe