The DbMiscFunctionsSSE script is a part of Skyrim SE’s Papyrus scripting ecosystem. This script is not present in the vanilla game, but can be found in modded sources like Dylbills Papyrus Functions (Dylbills PE).
For this script, the Papyrus index knows about:
- 4 functions
Inheritance Tree
No indexed scripts extend this script.
Properties
No properties found.
Events
No events found.
Functions
- Found in:
- Dylbills PE
Get all file paths in directory, including files in sub folders.
If Fullpath == true (default) get's full paths, e.g Data/Interface/MyFile.txt
Otherwise gets e.g MyFile.txt
Requires skse and papyrusUtil.- Found in:
- Dylbills PE
Get all folder paths in directory, including sub folders.
Requires skse and papyrusUtil.- Found in:
- Dylbills PE
voidfunctionWriteAllFilePathsToFile(stringOutputFilePath, stringDirectory, stringextension="", boolFullPath=true, stringNullString="", boolAllowDuplicates=false)GlobalWrite all of the file paths found in the Directory, including files in sub folders to the OutputFilePath.
If NullString != none, will only write file paths not found in the NullString
If AllowDuplicates == false (default), only writes file paths not already present in the OutputFilePath
Requires skse and PapyrusUtil- Found in:
- Dylbills PE
voidfunctionWriteAllFolderPathsToFile(stringOutputFilePath, stringDirectory, stringNullString="", boolAllowDuplicates=false)GlobalWrite all of the Folder paths found in the Directory, including sub folders, to the OutputFolderPath.
If NullString != none, will only write Folder paths not found in the NullString
If AllowDuplicates == false (default), only writes Folder paths not already present in the OutputFolderPath
Requires skse and PapyrusUtil
