我在我的程序中实现了一个浏览按钮。现在,我想知道如何获取用户浏览的文件,并获取它在用户系统上的位置/“文件路径”。
所以基本上,用户浏览图像文件,然后我想将该图像移动到程序目录中的一个新文件夹,称为“导入”。我计划使用命令提示符和复制命令来执行此操作。我只是不知道如何为浏览按钮编写事件代码。你们能给我一个用于这种情况的简单代码吗?
I've implemented a browse button in my program. Now, I'm wondering how i can take that file the user browsed for, and gain it's location/"file path" on the user's system.
So basically, the user browses for an image file, and then i want to move that image to a new folder in the program's directory, called "import". I plan to do so using command prompt, with a copy command. I just don't know how to code the event for the browse button. can you guys give me a simple code to use for this scenario?
发布评论
评论(2)
在 wxPython
wxFrame
中:In a wxPython
wxFrame
:这是保存的代码:
Here's the code for saving: