we are looking to use our own python module whenever shotgun is creating folders or files.
Think of it as a custom python os module.
There are tk-apps like tk-shotgun-folders that are configurable with hooks.
However we like to make a change that affect all other tk-apps as well.
The best place to do a modification like that seems to be in <path_to_sg_config>/install/core/python/tank/util/filesystem.py where the function such as ensure_folder_exists and .touch_file could be overwritten.
Essentially that is a modification to the tank module and with every future tank core update this modification would be undone. So I am really expecting that it is not a recommended thing to do.
Which leads to the questions:
1.) Is there a better way to change file and folder creation that is used by through out all of sgtk ?
(similar to filesystem.py)
2.) Is there an easy way to make this change configurable ?
(Not having to change anything in install/core)
Hey!
The process folder creation core hook will be called when processing the project folder creation and any files that that might entail:
However, the method you have called out, certainly doesn’t call this, I think we use that for any time we need to create say configuration folders, such as the bundle cache or things like that.
If you only need control over the project folder and file creation then the core hook will be what you need, but if you need to control literally everything that we ever create on disk, then you are going to have to start making changes. At that point, I wonder if there isn’t a better approach, that can be taken, maybe even patching things at a lower level like os, but that could also lead to unexpected problems.
We definitely do not want to modify the python os module, or use it’s namespace.
sgtk.Sgtk.create_filesystem_structure seems like a good example and kind of what I was looking for.
1.) First, however compared to filesystem.ensure_folder_exists that hook is not used much throughout the tk-apps. Instead filesystem.ensure_folder_exists seems to be the favorite call in a lot of tk-apps. Meaning that replacing these call is quite a bit of work and code to replace in your well working number of tk-apps right ?
Whilst the apps generally require that the folder structure was created with a call like sgtk.Sgtk.create_filesystem_structure, sometimes templates could include folders that aren’t actually in the schema, and so the apps try to ensure that the folders exist.
I would recommend putting a suggestion in on our roadmap page for that logic to be moved over into a hook. But for now if you need to manage all instances of of folder and file creation then you will have to take things over unfortunatly.
Core hooks unlike app hooks don’t require any YAML setup, you just copy them from tk-core over to your config/core/hooks folder. This is because core hook will run regardless of the environment so it doesn’t get configured in the env YAML files…