I made some c# program and I tried to use c# program on Python. C# program is CLI and use by CMD. On CMD prompt I can use my program like below command test.exe "C:\Users\Downloads\test file\1.txt" "C:\Users\Downloads\test file\2.txt"
But when I tried on python code.
AUDIO_TOOL = r"C:/Users/Downloads/test.exe"
filepath = r"C:/Users/Downloads/test file/1.txt"
binary_file_path = r"C:/Users/Downloads/test file/2.txt"
subprocess.call(["%s" % AUDIO_TOOL, r"%s" % filepath, r"%s" % binary_file_path], shell=True)
path that without space work properly but path with space does not work at all. please help me.