我想在python脚本的末尾打开来自python的windows图片库
我试着:
os.system("C:\\Program Files (x86)\\Windows Live\\Photo Gallery\\WLXPhotoGallery.exe");
我得到了:
'C:\Program' is not recognized as an internal or external command,
operable program or batch file.
有什么办法解决这个问题吗?
我正在尝试这段代码来打开画廊。我的应用程序在图片库中创建了一个目录。我可以在画廊看到我的目录。我正试图通过以下代码从我的应用程序中打开它:-
File sdDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
File f = new File(sdDir, "Photo Location Note");
Intent i = new Intent();
i.setAction(Intent.ACTI