I'd like to save my script's data to disk to load next time the script runs. For simplicity, is it a good idea to use os.path.expanduser('~') and save a directory named ".myscript_data" there? It would only need to be read by the script, and to avoid clutter for the user, I'd like it to be hidden. Is it acceptable practice to place hidden ".files" on the users computer?
|
|
|||||||||
|
|
On Windows, use a subfolder of You can also consider putting your files in a subdirectory of Not entirely related, but interesting: origin of dotfiles *(edit) More accurately, |
|||||
|
|
Yes, it is. (I'm assuming you're on linux, right?) |
|||
|
|
Yes, this is standard practice on most Unix systems. For transparency, it's often a good idea to print an informative message like If you are expecting to store significant amounts of data, it's a good idea to confirm the location with the user. This is also the standard place for any additional configuration files for your application. |
|||
|
|
On Linux, I suggest a file or directory (no dotfile) in |
|||
|
|