gitlab.com/evatix-go/core@v1.3.55/extensionsconst/dot-extensions.go (about) 1 package extensionsconst 2 3 // References : https://t.ly/4dWf 4 //goland:noinspection ALL 5 const ( 6 AllFiles string = "*.*" 7 DotAny string = ".*" 8 AllExtensionFilterStart string = "*." 9 DotPdf string = ".pdf" 10 DotJpg string = ".jpg" 11 DotDoc string = ".doc" 12 DotTxt string = ".txt" 13 DotJson string = ".json" 14 DotYaml string = ".yaml" 15 DotConf string = ".conf" 16 DotDb string = ".db" 17 DotBak string = ".bak" 18 DotBack string = ".back" 19 DotFile string = ".file" 20 DotBin string = ".bin" 21 DotIni string = ".ini" 22 DotSh string = ".sh" 23 DotBash string = ".bash" 24 DotInstruction string = ".instruction" 25 DotPkg string = ".pkg" 26 DotPackage string = ".package" 27 DotCache string = ".cache" 28 DotSql string = ".sql" 29 DotImap string = ".imap" 30 DotXml string = ".xml" 31 DotPs string = ".ps" 32 DotPy string = ".py" 33 DotPhp string = ".php" 34 DotO string = ".o" 35 DotLog string = ".log" 36 DotLock string = ".lock" 37 DotIso string = ".iso" 38 DotZip string = ".zip" 39 DotTar string = ".tar" 40 DotTarGz string = ".tar.gz" 41 DotTarBz string = ".tar.bz" 42 Dot7z string = ".7z" 43 DotH string = ".h" 44 DotDiff string = ".diff" 45 DotDeb string = ".deb" 46 DotCpp string = ".cpp" 47 DotBz2 string = ".bz2" 48 DotRpm string = ".rpm" 49 DotS string = ".s" // assembly source file 50 DotPem string = ".pem" 51 DotKey string = ".key" 52 )