hasii2011 / hasii2011/pyutplugins
Provide temp file path for plugins use
Open
enhancement
- Dominant language
- Python
- Stars
- 0
- Forks
- 0
- PR merge metrics
- No merged PRs in 30d
Description
```python
@classmethod
def getTempFilePath(cls, fileName: str) -> str:
if PyutPreferences().useDebugTempFileLocation is True:
fqFileName: str = f'{PyutUtils.getBasePath()}{osSep}{fileName}'
else:
tempDir: str = gettempdir()
fqFileName = f'{tempDir}{osSep}{fileName}'
return fqFileName
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.