如何在特定目录中打开python搁置文件

时间:2017-08-31 16:29:14

标签: python database shelve

我正在研究Ch。 8“使用Python自动化无聊的东西”,试图扩展Multiclipboard项目。这是我的代码:

#! /usr/bin/env python3

# mcb.pyw saves and loads pieces of text to the clipboard
# Usage:        save <keyword> - Saves clipboard to keyword.
#               <keyword> - Loads keyword to the clipboard.
#               list - Loads all keywords to clipboard.
#               delete <keyword> - Deletes keyword from shelve.

import sys, shelve, pyperclip, os

# open shelve file
dbFile = os.path.join('Users', 'dustin', 'Documents', 'repos', 'python', 'mcbdb')
shelfFile = shelve.open(dbFile)


# Save clipboard content
if len(sys.argv) == 3 and sys.argv[1].lower() == 'save':
   shelfFile[sys.argv[2]]= pyperclip.paste()

# Delete choosen content
elif len(sys.argv) == 3 and sys.argv[1].lower() == 'delete':
        if sys.argv[2] in list(shelfFile.keys()):
            del shelfFile[sys.argv[2]]
            print('"' + sys.argv[2] + '" has been deleted.')
        else:
            print('"' + sys.argv[2] + '" not found.')
elif len(sys.argv) == 2:
    # List keywords
    if sys.argv[1].lower() == 'list':
        print('\nAvailable keywords:\n')
        keywords = list(shelfFile.keys())
        for key in sorted(keywords):
            print(key)
    # Load content         
    elif sys.argv[1] in shelfFile:
        pyperclip.copy(shelfFile[sys.argv[1]])
    else:
        # Print usage error
        print('Usage:\n1. save <keyword>\n2. <keyword>\n' +
                '3. list\n4. delete <keyword>')
        sys.exit()

# close shelve file
shelfFile.close()

我已将此程序添加到我的路径中,并希望从我当前工作的任何目录中使用它。问题是shelve.open()在当前工作目录中创建一个新文件。我怎么能有一个持久性目录?

2 个答案:

答案 0 :(得分:0)

你的

dbFile = os.path.join('Users', 'dustin', 'Documents', 'repos', 'python', 'mcbdb')

会变成类似'Users/dustin/Documents/repos/python/mcbdb'的内容,所以如果你从/Users/dustin/运行它,它会指向/Users/dustin/Users/dustin/Documents/repos/python/mcbdb,这可能不是你想要的。

如果您使用绝对路径,那么以/X:\(依赖于操作系统)为根的内容将保留&#34;特定目录&#34;。

我可能会推荐其他内容,使用~os.path.expanduser获取用户的主目录:

dbFile = os.path.expanduser('~/.mcbdb')

答案 1 :(得分:0)

3年后,我偶然发现了同一问题。 如您所说

shelfFile = shelve.open('fileName')

将文件架文件保存到cwd。根据您启动脚本的方式,cwd会发生变化,因此文件可能会保存在不同的位置。

你当然可以说

shelfFile = shelve.open('C:\an\absolute\path')

但是如果将原始脚本移动到另一个目录,则会出现问题。

因此,我提出了以下建议:

from pathlib import Path
shelfSavePath = Path(sys.argv[0]).parent / Path('filename')
shelfFile = shelve.open(fr'{shelfSavePath}')

这会将文件架文件保存在python脚本所在的目录中。

说明:

在Windows上,sys.argv [0]是脚本的完整路径名,可能看起来像这样:

C:\Users\path\to\script.py

Look here for documentation on sys.argv

在此示例中

Path(sys.argv[0]).parent

会导致

C:\Users\path\to

使用/运算符向其中添加Path('filename')。

因此,这将给我们:

C:\Users\path\to\filename

因此,无论脚本位于哪个目录,都始终将文件架文件保存在与脚本相同的目录中。

Look here for documentation on pathlib