Looking through SO it appears that the Application Support folder is not created on simulators by default:
iOS: Can't save file to 'Application Support' folder, but can to 'Documents'
But is it created on devices? Or do we need to createDirectory for applicationSupportDirectory, and when we use
fileManager.createDirectory(at: applicationSupportURL, withIntermediateDirectories: true, attributes: nil)
are we guaranteed that if there are files within the folder that they are not deleted? I can't find a reference in the documentation for either question.