MCPcopy Create free account
hub / github.com/bumptop/BumpTop / getFileAttributes

Method getFileAttributes

trunk/win/Source/BT_FileSystemManager.cpp:912–920  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

910}
911
912uint FileSystemManager::getFileAttributes(QString fileName)
913{
914 WIN32_FILE_ATTRIBUTE_DATA fileAttributes = { 0 };
915
916 // Get the file attributes of this file
917 GetFileAttributesEx((LPCTSTR) fileName.utf16(), GetFileExInfoStandard, &fileAttributes);
918
919 return (uint) fileAttributes.dwFileAttributes;
920}
921
922QString FileSystemManager::getFileExtension(QString filePath)
923{

Callers 10

setFilePathMethod · 0.80
onFileAddedMethod · 0.80
onFileAddedMethod · 0.80
onFileModifiedMethod · 0.80
GetSystemIconInfoMethod · 0.80
for_eachFunction · 0.80
setDimsFromFileSizeFunction · 0.80
SaveSceneToFileFunction · 0.80
loadImageDirAsObjectsFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected