RE: tempfile.gettempdir() result on Windows

2005-06-03 Thread Tim Golden
| [Leo Breebaart] | | | | On MS Windows, I am trying to find out a good default location to | | save some temporary files. | | | | The tempfile module seemed to have exactly what I wanted: | | | | >>> import tempfile | | >>> tempfile.gettempdir() | | 'c:\\docume~1\\admini~1\\locals~1\\temp' | |

RE: tempfile.gettempdir() result on Windows

2005-06-03 Thread Tim Golden
[Leo Breebaart] | | On MS Windows, I am trying to find out a good default location to | save some temporary files. | | The tempfile module seemed to have exactly what I wanted: | | >>> import tempfile | >>> tempfile.gettempdir() | 'c:\\docume~1\\admini~1\\locals~1\\temp' | >>> | | My problem (e

tempfile.gettempdir() result on Windows

2005-06-03 Thread Leo Breebaart
On MS Windows, I am trying to find out a good default location to save some temporary files. The tempfile module seemed to have exactly what I wanted: >>> import tempfile >>> tempfile.gettempdir() 'c:\\docume~1\\admini~1\\locals~1\\temp' >>> My problem (entirely cosmetic, but still) is that I al