Dear All,
I have written some encryption code in python that takes raw input message from user and then encrypts and decrypts it using AES. Now i want to enhance the working and i want that i can open the windows explorer from my code and browse to any file on my computer, select it and when i press OK button the path to file is stored in a variable so i can use it for processing.
I have search many forums, i have managed to open windows explorer but there is no traditional OK and Cancel button. If user presses OK button the path to the file should be stored in my code variable.
Any help in this regard will be highly appreciated.
moreover, just to let you know i have used the following code:
import os
os.system("start .")
but the explorer window doesnt have any cancel or OK button. Please help