Background for Skyrim SE

The DbMiscFunctionsSSE Script

    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

      • string[]functionGetAllFilesInFolder(stringdirectory, stringextension="", boolFullPath=true)Global

        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.

      • string[]functionGetAllFoldersInFolder(stringdirectory)Global

        Get all folder paths in directory, including sub folders.
        Requires skse and papyrusUtil.

      • voidfunctionWriteAllFilePathsToFile(stringOutputFilePath, stringDirectory, stringextension="", boolFullPath=true, stringNullString="", boolAllowDuplicates=false)Global

        Write 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

      • voidfunctionWriteAllFolderPathsToFile(stringOutputFilePath, stringDirectory, stringNullString="", boolAllowDuplicates=false)Global

        Write 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

      Some data provided by the Skyrim Creation Kit Wiki. Licensed under the Creative Commons Attribution-ShareAlike license.