gfileinfo.h 41 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084
  1. /* GIO - GLib Input, Output and Streaming Library
  2. *
  3. * Copyright (C) 2006-2007 Red Hat, Inc.
  4. *
  5. * This library is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU Lesser General Public
  7. * License as published by the Free Software Foundation; either
  8. * version 2 of the License, or (at your option) any later version.
  9. *
  10. * This library is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. * Lesser General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU Lesser General
  16. * Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
  17. *
  18. * Author: Alexander Larsson <alexl@redhat.com>
  19. */
  20. #ifndef __G_FILE_INFO_H__
  21. #define __G_FILE_INFO_H__
  22. #if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
  23. #error "Only <gio/gio.h> can be included directly."
  24. #endif
  25. #include <gio/giotypes.h>
  26. G_BEGIN_DECLS
  27. #define G_TYPE_FILE_INFO (g_file_info_get_type ())
  28. #define G_FILE_INFO(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), G_TYPE_FILE_INFO, GFileInfo))
  29. #define G_FILE_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_CAST((k), G_TYPE_FILE_INFO, GFileInfoClass))
  30. #define G_IS_FILE_INFO(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), G_TYPE_FILE_INFO))
  31. #define G_IS_FILE_INFO_CLASS(k) (G_TYPE_CHECK_CLASS_TYPE ((k), G_TYPE_FILE_INFO))
  32. #define G_FILE_INFO_GET_CLASS(o) (G_TYPE_INSTANCE_GET_CLASS ((o), G_TYPE_FILE_INFO, GFileInfoClass))
  33. /**
  34. * GFileInfo:
  35. *
  36. * Stores information about a file system object referenced by a #GFile.
  37. **/
  38. typedef struct _GFileInfoClass GFileInfoClass;
  39. /* Common Attributes: */
  40. /**
  41. * G_FILE_ATTRIBUTE_STANDARD_TYPE:
  42. *
  43. * A key in the "standard" namespace for storing file types.
  44. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  45. * The value for this key should contain a #GFileType.
  46. **/
  47. #define G_FILE_ATTRIBUTE_STANDARD_TYPE "standard::type" /* uint32 (GFileType) */
  48. /**
  49. * G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN:
  50. *
  51. * A key in the "standard" namespace for checking if a file is hidden.
  52. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  53. **/
  54. #define G_FILE_ATTRIBUTE_STANDARD_IS_HIDDEN "standard::is-hidden" /* boolean */
  55. /**
  56. * G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP:
  57. *
  58. * A key in the "standard" namespace for checking if a file is a backup file.
  59. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  60. **/
  61. #define G_FILE_ATTRIBUTE_STANDARD_IS_BACKUP "standard::is-backup" /* boolean */
  62. /**
  63. * G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK:
  64. *
  65. * A key in the "standard" namespace for checking if the file is a symlink.
  66. * Typically the actual type is something else, if we followed the symlink
  67. * to get the type.
  68. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  69. **/
  70. #define G_FILE_ATTRIBUTE_STANDARD_IS_SYMLINK "standard::is-symlink" /* boolean */
  71. /**
  72. * G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL:
  73. *
  74. * A key in the "standard" namespace for checking if a file is virtual.
  75. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  76. **/
  77. #define G_FILE_ATTRIBUTE_STANDARD_IS_VIRTUAL "standard::is-virtual" /* boolean */
  78. /**
  79. * G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE:
  80. *
  81. * A key in the "standard" namespace for checking if a file is
  82. * volatile. This is meant for opaque, non-POSIX-like backends to
  83. * indicate that the URI is not persistent. Applications should look
  84. * at #G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET for the persistent URI.
  85. *
  86. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  87. *
  88. * Since: 2.46
  89. **/
  90. #define G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE "standard::is-volatile" /* boolean */
  91. /**
  92. * G_FILE_ATTRIBUTE_STANDARD_NAME:
  93. *
  94. * A key in the "standard" namespace for getting the name of the file.
  95. * The name is the on-disk filename which may not be in any known encoding,
  96. * and can thus not be generally displayed as is.
  97. * Use #G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME if you need to display the
  98. * name in a user interface.
  99. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
  100. **/
  101. #define G_FILE_ATTRIBUTE_STANDARD_NAME "standard::name" /* byte string */
  102. /**
  103. * G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME:
  104. *
  105. * A key in the "standard" namespace for getting the display name of the file.
  106. * A display name is guaranteed to be in UTF8 and can thus be displayed in
  107. * the UI.
  108. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  109. **/
  110. #define G_FILE_ATTRIBUTE_STANDARD_DISPLAY_NAME "standard::display-name" /* string */
  111. /**
  112. * G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME:
  113. *
  114. * A key in the "standard" namespace for edit name of the file.
  115. * An edit name is similar to the display name, but it is meant to be
  116. * used when you want to rename the file in the UI. The display name
  117. * might contain information you don't want in the new filename (such as
  118. * "(invalid unicode)" if the filename was in an invalid encoding).
  119. *
  120. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  121. **/
  122. #define G_FILE_ATTRIBUTE_STANDARD_EDIT_NAME "standard::edit-name" /* string */
  123. /**
  124. * G_FILE_ATTRIBUTE_STANDARD_COPY_NAME:
  125. *
  126. * A key in the "standard" namespace for getting the copy name of the file.
  127. * The copy name is an optional version of the name. If available it's always
  128. * in UTF8, and corresponds directly to the original filename (only transcoded to
  129. * UTF8). This is useful if you want to copy the file to another filesystem that
  130. * might have a different encoding. If the filename is not a valid string in the
  131. * encoding selected for the filesystem it is in then the copy name will not be set.
  132. *
  133. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  134. **/
  135. #define G_FILE_ATTRIBUTE_STANDARD_COPY_NAME "standard::copy-name" /* string */
  136. /**
  137. * G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION:
  138. *
  139. * A key in the "standard" namespace for getting the description of the file.
  140. * The description is a utf8 string that describes the file, generally containing
  141. * the filename, but can also contain furter information. Example descriptions
  142. * could be "filename (on hostname)" for a remote file or "filename (in trash)"
  143. * for a file in the trash. This is useful for instance as the window title
  144. * when displaying a directory or for a bookmarks menu.
  145. *
  146. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  147. **/
  148. #define G_FILE_ATTRIBUTE_STANDARD_DESCRIPTION "standard::description" /* string */
  149. /**
  150. * G_FILE_ATTRIBUTE_STANDARD_ICON:
  151. *
  152. * A key in the "standard" namespace for getting the icon for the file.
  153. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT.
  154. * The value for this key should contain a #GIcon.
  155. **/
  156. #define G_FILE_ATTRIBUTE_STANDARD_ICON "standard::icon" /* object (GIcon) */
  157. /**
  158. * G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON:
  159. *
  160. * A key in the "standard" namespace for getting the symbolic icon for the file.
  161. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT.
  162. * The value for this key should contain a #GIcon.
  163. *
  164. * Since: 2.34
  165. **/
  166. #define G_FILE_ATTRIBUTE_STANDARD_SYMBOLIC_ICON "standard::symbolic-icon" /* object (GIcon) */
  167. /**
  168. * G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE:
  169. *
  170. * A key in the "standard" namespace for getting the content type of the file.
  171. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  172. * The value for this key should contain a valid content type.
  173. **/
  174. #define G_FILE_ATTRIBUTE_STANDARD_CONTENT_TYPE "standard::content-type" /* string */
  175. /**
  176. * G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE:
  177. *
  178. * A key in the "standard" namespace for getting the fast content type.
  179. * The fast content type isn't as reliable as the regular one, as it
  180. * only uses the filename to guess it, but it is faster to calculate than the
  181. * regular content type.
  182. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  183. *
  184. **/
  185. #define G_FILE_ATTRIBUTE_STANDARD_FAST_CONTENT_TYPE "standard::fast-content-type" /* string */
  186. /**
  187. * G_FILE_ATTRIBUTE_STANDARD_SIZE:
  188. *
  189. * A key in the "standard" namespace for getting the file's size (in bytes).
  190. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
  191. **/
  192. #define G_FILE_ATTRIBUTE_STANDARD_SIZE "standard::size" /* uint64 */
  193. /**
  194. * G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE:
  195. *
  196. * A key in the "standard" namespace for getting the amount of disk space
  197. * that is consumed by the file (in bytes). This will generally be larger
  198. * than the file size (due to block size overhead) but can occasionally be
  199. * smaller (for example, for sparse files).
  200. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
  201. *
  202. * Since: 2.20
  203. **/
  204. #define G_FILE_ATTRIBUTE_STANDARD_ALLOCATED_SIZE "standard::allocated-size" /* uint64 */
  205. /**
  206. * G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET:
  207. *
  208. * A key in the "standard" namespace for getting the symlink target, if the file
  209. * is a symlink. Corresponding #GFileAttributeType is
  210. * %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
  211. **/
  212. #define G_FILE_ATTRIBUTE_STANDARD_SYMLINK_TARGET "standard::symlink-target" /* byte string */
  213. /**
  214. * G_FILE_ATTRIBUTE_STANDARD_TARGET_URI:
  215. *
  216. * A key in the "standard" namespace for getting the target URI for the file, in
  217. * the case of %G_FILE_TYPE_SHORTCUT or %G_FILE_TYPE_MOUNTABLE files.
  218. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  219. **/
  220. #define G_FILE_ATTRIBUTE_STANDARD_TARGET_URI "standard::target-uri" /* string */
  221. /**
  222. * G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER:
  223. *
  224. * A key in the "standard" namespace for setting the sort order of a file.
  225. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_INT32.
  226. * An example use would be in file managers, which would use this key
  227. * to set the order files are displayed. Files with smaller sort order
  228. * should be sorted first, and files without sort order as if sort order
  229. * was zero.
  230. **/
  231. #define G_FILE_ATTRIBUTE_STANDARD_SORT_ORDER "standard::sort-order" /* int32 */
  232. /* Entity tags, used to avoid missing updates on save */
  233. /**
  234. * G_FILE_ATTRIBUTE_ETAG_VALUE:
  235. *
  236. * A key in the "etag" namespace for getting the value of the file's
  237. * entity tag. Corresponding #GFileAttributeType is
  238. * %G_FILE_ATTRIBUTE_TYPE_STRING.
  239. **/
  240. #define G_FILE_ATTRIBUTE_ETAG_VALUE "etag::value" /* string */
  241. /* File identifier, for e.g. avoiding loops when doing recursive
  242. * directory scanning
  243. */
  244. /**
  245. * G_FILE_ATTRIBUTE_ID_FILE:
  246. *
  247. * A key in the "id" namespace for getting a file identifier.
  248. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  249. * An example use would be during listing files, to avoid recursive
  250. * directory scanning.
  251. **/
  252. #define G_FILE_ATTRIBUTE_ID_FILE "id::file" /* string */
  253. /**
  254. * G_FILE_ATTRIBUTE_ID_FILESYSTEM:
  255. *
  256. * A key in the "id" namespace for getting the file system identifier.
  257. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  258. * An example use would be during drag and drop to see if the source
  259. * and target are on the same filesystem (default to move) or not (default
  260. * to copy).
  261. **/
  262. #define G_FILE_ATTRIBUTE_ID_FILESYSTEM "id::filesystem" /* string */
  263. /* Calculated Access Rights for current user */
  264. /**
  265. * G_FILE_ATTRIBUTE_ACCESS_CAN_READ:
  266. *
  267. * A key in the "access" namespace for getting read privileges.
  268. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  269. * This attribute will be %TRUE if the user is able to read the file.
  270. **/
  271. #define G_FILE_ATTRIBUTE_ACCESS_CAN_READ "access::can-read" /* boolean */
  272. /**
  273. * G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE:
  274. *
  275. * A key in the "access" namespace for getting write privileges.
  276. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  277. * This attribute will be %TRUE if the user is able to write to the file.
  278. **/
  279. #define G_FILE_ATTRIBUTE_ACCESS_CAN_WRITE "access::can-write" /* boolean */
  280. /**
  281. * G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE:
  282. *
  283. * A key in the "access" namespace for getting execution privileges.
  284. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  285. * This attribute will be %TRUE if the user is able to execute the file.
  286. **/
  287. #define G_FILE_ATTRIBUTE_ACCESS_CAN_EXECUTE "access::can-execute" /* boolean */
  288. /**
  289. * G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE:
  290. *
  291. * A key in the "access" namespace for checking deletion privileges.
  292. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  293. * This attribute will be %TRUE if the user is able to delete the file.
  294. **/
  295. #define G_FILE_ATTRIBUTE_ACCESS_CAN_DELETE "access::can-delete" /* boolean */
  296. /**
  297. * G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH:
  298. *
  299. * A key in the "access" namespace for checking trashing privileges.
  300. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  301. * This attribute will be %TRUE if the user is able to move the file to
  302. * the trash.
  303. **/
  304. #define G_FILE_ATTRIBUTE_ACCESS_CAN_TRASH "access::can-trash" /* boolean */
  305. /**
  306. * G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME:
  307. *
  308. * A key in the "access" namespace for checking renaming privileges.
  309. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  310. * This attribute will be %TRUE if the user is able to rename the file.
  311. **/
  312. #define G_FILE_ATTRIBUTE_ACCESS_CAN_RENAME "access::can-rename" /* boolean */
  313. /* TODO: Should we have special version for directories? can_enumerate, etc */
  314. /* Mountable attributes */
  315. /**
  316. * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT:
  317. *
  318. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is mountable.
  319. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  320. **/
  321. #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_MOUNT "mountable::can-mount" /* boolean */
  322. /**
  323. * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT:
  324. *
  325. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) is unmountable.
  326. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  327. **/
  328. #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_UNMOUNT "mountable::can-unmount" /* boolean */
  329. /**
  330. * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT:
  331. *
  332. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be ejected.
  333. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  334. **/
  335. #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_EJECT "mountable::can-eject" /* boolean */
  336. /**
  337. * G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE:
  338. *
  339. * A key in the "mountable" namespace for getting the unix device.
  340. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  341. **/
  342. #define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE "mountable::unix-device" /* uint32 */
  343. /**
  344. * G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE:
  345. *
  346. * A key in the "mountable" namespace for getting the unix device file.
  347. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  348. *
  349. * Since: 2.22
  350. **/
  351. #define G_FILE_ATTRIBUTE_MOUNTABLE_UNIX_DEVICE_FILE "mountable::unix-device-file" /* string */
  352. /**
  353. * G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI:
  354. *
  355. * A key in the "mountable" namespace for getting the HAL UDI for the mountable
  356. * file. Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  357. **/
  358. #define G_FILE_ATTRIBUTE_MOUNTABLE_HAL_UDI "mountable::hal-udi" /* string */
  359. /**
  360. * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START:
  361. *
  362. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started.
  363. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  364. *
  365. * Since: 2.22
  366. */
  367. #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START "mountable::can-start" /* boolean */
  368. /**
  369. * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED:
  370. *
  371. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be started
  372. * degraded.
  373. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  374. *
  375. * Since: 2.22
  376. */
  377. #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_START_DEGRADED "mountable::can-start-degraded" /* boolean */
  378. /**
  379. * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP:
  380. *
  381. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be stopped.
  382. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  383. *
  384. * Since: 2.22
  385. */
  386. #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_STOP "mountable::can-stop" /* boolean */
  387. /**
  388. * G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE:
  389. *
  390. * A key in the "mountable" namespace for getting the #GDriveStartStopType.
  391. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  392. *
  393. * Since: 2.22
  394. */
  395. #define G_FILE_ATTRIBUTE_MOUNTABLE_START_STOP_TYPE "mountable::start-stop-type" /* uint32 (GDriveStartStopType) */
  396. /**
  397. * G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL:
  398. *
  399. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE) can be polled.
  400. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  401. *
  402. * Since: 2.22
  403. */
  404. #define G_FILE_ATTRIBUTE_MOUNTABLE_CAN_POLL "mountable::can-poll" /* boolean */
  405. /**
  406. * G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC:
  407. *
  408. * A key in the "mountable" namespace for checking if a file (of type G_FILE_TYPE_MOUNTABLE)
  409. * is automatically polled for media.
  410. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  411. *
  412. * Since: 2.22
  413. */
  414. #define G_FILE_ATTRIBUTE_MOUNTABLE_IS_MEDIA_CHECK_AUTOMATIC "mountable::is-media-check-automatic" /* boolean */
  415. /* Time attributes */
  416. /**
  417. * G_FILE_ATTRIBUTE_TIME_MODIFIED:
  418. *
  419. * A key in the "time" namespace for getting the time the file was last
  420. * modified. Corresponding #GFileAttributeType is
  421. * %G_FILE_ATTRIBUTE_TYPE_UINT64, and contains the UNIX time since the
  422. * file was modified.
  423. **/
  424. #define G_FILE_ATTRIBUTE_TIME_MODIFIED "time::modified" /* uint64 */
  425. /**
  426. * G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC:
  427. *
  428. * A key in the "time" namespace for getting the miliseconds of the time
  429. * the file was last modified. This should be used in conjunction with
  430. * #G_FILE_ATTRIBUTE_TIME_MODIFIED. Corresponding #GFileAttributeType is
  431. * %G_FILE_ATTRIBUTE_TYPE_UINT32.
  432. **/
  433. #define G_FILE_ATTRIBUTE_TIME_MODIFIED_USEC "time::modified-usec" /* uint32 */
  434. /**
  435. * G_FILE_ATTRIBUTE_TIME_ACCESS:
  436. *
  437. * A key in the "time" namespace for getting the time the file was last
  438. * accessed. Corresponding #GFileAttributeType is
  439. * %G_FILE_ATTRIBUTE_TYPE_UINT64, and contains the UNIX time since the
  440. * file was last accessed.
  441. **/
  442. #define G_FILE_ATTRIBUTE_TIME_ACCESS "time::access" /* uint64 */
  443. /**
  444. * G_FILE_ATTRIBUTE_TIME_ACCESS_USEC:
  445. *
  446. * A key in the "time" namespace for getting the microseconds of the time
  447. * the file was last accessed. This should be used in conjunction with
  448. * #G_FILE_ATTRIBUTE_TIME_ACCESS. Corresponding #GFileAttributeType is
  449. * %G_FILE_ATTRIBUTE_TYPE_UINT32.
  450. **/
  451. #define G_FILE_ATTRIBUTE_TIME_ACCESS_USEC "time::access-usec" /* uint32 */
  452. /**
  453. * G_FILE_ATTRIBUTE_TIME_CHANGED:
  454. *
  455. * A key in the "time" namespace for getting the time the file was last
  456. * changed. Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64,
  457. * and contains the UNIX time since the file was last changed.
  458. *
  459. * This corresponds to the traditional UNIX ctime.
  460. **/
  461. #define G_FILE_ATTRIBUTE_TIME_CHANGED "time::changed" /* uint64 */
  462. /**
  463. * G_FILE_ATTRIBUTE_TIME_CHANGED_USEC:
  464. *
  465. * A key in the "time" namespace for getting the microseconds of the time
  466. * the file was last changed. This should be used in conjunction with
  467. * #G_FILE_ATTRIBUTE_TIME_CHANGED. Corresponding #GFileAttributeType is
  468. * %G_FILE_ATTRIBUTE_TYPE_UINT32.
  469. **/
  470. #define G_FILE_ATTRIBUTE_TIME_CHANGED_USEC "time::changed-usec" /* uint32 */
  471. /**
  472. * G_FILE_ATTRIBUTE_TIME_CREATED:
  473. *
  474. * A key in the "time" namespace for getting the time the file was created.
  475. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64,
  476. * and contains the UNIX time since the file was created.
  477. *
  478. * This corresponds to the NTFS ctime.
  479. **/
  480. #define G_FILE_ATTRIBUTE_TIME_CREATED "time::created" /* uint64 */
  481. /**
  482. * G_FILE_ATTRIBUTE_TIME_CREATED_USEC:
  483. *
  484. * A key in the "time" namespace for getting the microseconds of the time
  485. * the file was created. This should be used in conjunction with
  486. * #G_FILE_ATTRIBUTE_TIME_CREATED. Corresponding #GFileAttributeType is
  487. * %G_FILE_ATTRIBUTE_TYPE_UINT32.
  488. **/
  489. #define G_FILE_ATTRIBUTE_TIME_CREATED_USEC "time::created-usec" /* uint32 */
  490. /* Unix specific attributes */
  491. /**
  492. * G_FILE_ATTRIBUTE_UNIX_DEVICE:
  493. *
  494. * A key in the "unix" namespace for getting the device id of the device the
  495. * file is located on (see stat() documentation). This attribute is only
  496. * available for UNIX file systems. Corresponding #GFileAttributeType is
  497. * %G_FILE_ATTRIBUTE_TYPE_UINT32.
  498. **/
  499. #define G_FILE_ATTRIBUTE_UNIX_DEVICE "unix::device" /* uint32 */
  500. /**
  501. * G_FILE_ATTRIBUTE_UNIX_INODE:
  502. *
  503. * A key in the "unix" namespace for getting the inode of the file.
  504. * This attribute is only available for UNIX file systems. Corresponding
  505. * #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
  506. **/
  507. #define G_FILE_ATTRIBUTE_UNIX_INODE "unix::inode" /* uint64 */
  508. /**
  509. * G_FILE_ATTRIBUTE_UNIX_MODE:
  510. *
  511. * A key in the "unix" namespace for getting the mode of the file
  512. * (e.g. whether the file is a regular file, symlink, etc). See lstat()
  513. * documentation. This attribute is only available for UNIX file systems.
  514. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  515. **/
  516. #define G_FILE_ATTRIBUTE_UNIX_MODE "unix::mode" /* uint32 */
  517. /**
  518. * G_FILE_ATTRIBUTE_UNIX_NLINK:
  519. *
  520. * A key in the "unix" namespace for getting the number of hard links
  521. * for a file. See lstat() documentation. This attribute is only available
  522. * for UNIX file systems. Corresponding #GFileAttributeType is
  523. * %G_FILE_ATTRIBUTE_TYPE_UINT32.
  524. **/
  525. #define G_FILE_ATTRIBUTE_UNIX_NLINK "unix::nlink" /* uint32 */
  526. /**
  527. * G_FILE_ATTRIBUTE_UNIX_UID:
  528. *
  529. * A key in the "unix" namespace for getting the user ID for the file.
  530. * This attribute is only available for UNIX file systems.
  531. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  532. **/
  533. #define G_FILE_ATTRIBUTE_UNIX_UID "unix::uid" /* uint32 */
  534. /**
  535. * G_FILE_ATTRIBUTE_UNIX_GID:
  536. *
  537. * A key in the "unix" namespace for getting the group ID for the file.
  538. * This attribute is only available for UNIX file systems.
  539. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  540. **/
  541. #define G_FILE_ATTRIBUTE_UNIX_GID "unix::gid" /* uint32 */
  542. /**
  543. * G_FILE_ATTRIBUTE_UNIX_RDEV:
  544. *
  545. * A key in the "unix" namespace for getting the device ID for the file
  546. * (if it is a special file). See lstat() documentation. This attribute
  547. * is only available for UNIX file systems. Corresponding #GFileAttributeType
  548. * is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  549. **/
  550. #define G_FILE_ATTRIBUTE_UNIX_RDEV "unix::rdev" /* uint32 */
  551. /**
  552. * G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE:
  553. *
  554. * A key in the "unix" namespace for getting the block size for the file
  555. * system. This attribute is only available for UNIX file systems.
  556. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  557. **/
  558. #define G_FILE_ATTRIBUTE_UNIX_BLOCK_SIZE "unix::block-size" /* uint32 */
  559. /**
  560. * G_FILE_ATTRIBUTE_UNIX_BLOCKS:
  561. *
  562. * A key in the "unix" namespace for getting the number of blocks allocated
  563. * for the file. This attribute is only available for UNIX file systems.
  564. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT64.
  565. **/
  566. #define G_FILE_ATTRIBUTE_UNIX_BLOCKS "unix::blocks" /* uint64 */
  567. /**
  568. * G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT:
  569. *
  570. * A key in the "unix" namespace for checking if the file represents a
  571. * UNIX mount point. This attribute is %TRUE if the file is a UNIX mount
  572. * point. This attribute is only available for UNIX file systems.
  573. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  574. **/
  575. #define G_FILE_ATTRIBUTE_UNIX_IS_MOUNTPOINT "unix::is-mountpoint" /* boolean */
  576. /* DOS specific attributes */
  577. /**
  578. * G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE:
  579. *
  580. * A key in the "dos" namespace for checking if the file's archive flag
  581. * is set. This attribute is %TRUE if the archive flag is set. This attribute
  582. * is only available for DOS file systems. Corresponding #GFileAttributeType
  583. * is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  584. **/
  585. #define G_FILE_ATTRIBUTE_DOS_IS_ARCHIVE "dos::is-archive" /* boolean */
  586. /**
  587. * G_FILE_ATTRIBUTE_DOS_IS_SYSTEM:
  588. *
  589. * A key in the "dos" namespace for checking if the file's backup flag
  590. * is set. This attribute is %TRUE if the backup flag is set. This attribute
  591. * is only available for DOS file systems. Corresponding #GFileAttributeType
  592. * is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  593. **/
  594. #define G_FILE_ATTRIBUTE_DOS_IS_SYSTEM "dos::is-system" /* boolean */
  595. /* Owner attributes */
  596. /**
  597. * G_FILE_ATTRIBUTE_OWNER_USER:
  598. *
  599. * A key in the "owner" namespace for getting the user name of the
  600. * file's owner. Corresponding #GFileAttributeType is
  601. * %G_FILE_ATTRIBUTE_TYPE_STRING.
  602. **/
  603. #define G_FILE_ATTRIBUTE_OWNER_USER "owner::user" /* string */
  604. /**
  605. * G_FILE_ATTRIBUTE_OWNER_USER_REAL:
  606. *
  607. * A key in the "owner" namespace for getting the real name of the
  608. * user that owns the file. Corresponding #GFileAttributeType is
  609. * %G_FILE_ATTRIBUTE_TYPE_STRING.
  610. **/
  611. #define G_FILE_ATTRIBUTE_OWNER_USER_REAL "owner::user-real" /* string */
  612. /**
  613. * G_FILE_ATTRIBUTE_OWNER_GROUP:
  614. *
  615. * A key in the "owner" namespace for getting the file owner's group.
  616. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  617. **/
  618. #define G_FILE_ATTRIBUTE_OWNER_GROUP "owner::group" /* string */
  619. /* Thumbnails */
  620. /**
  621. * G_FILE_ATTRIBUTE_THUMBNAIL_PATH:
  622. *
  623. * A key in the "thumbnail" namespace for getting the path to the thumbnail
  624. * image. Corresponding #GFileAttributeType is
  625. * %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
  626. **/
  627. #define G_FILE_ATTRIBUTE_THUMBNAIL_PATH "thumbnail::path" /* bytestring */
  628. /**
  629. * G_FILE_ATTRIBUTE_THUMBNAILING_FAILED:
  630. *
  631. * A key in the "thumbnail" namespace for checking if thumbnailing failed.
  632. * This attribute is %TRUE if thumbnailing failed. Corresponding
  633. * #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  634. **/
  635. #define G_FILE_ATTRIBUTE_THUMBNAILING_FAILED "thumbnail::failed" /* boolean */
  636. /**
  637. * G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID:
  638. *
  639. * A key in the "thumbnail" namespace for checking whether the thumbnail is outdated.
  640. * This attribute is %TRUE if the thumbnail is up-to-date with the file it represents,
  641. * and %FALSE if the file has been modified since the thumbnail was generated.
  642. *
  643. * If %G_FILE_ATTRIBUTE_THUMBNAILING_FAILED is %TRUE and this attribute is %FALSE,
  644. * it indicates that thumbnailing may be attempted again and may succeed.
  645. *
  646. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  647. *
  648. * Since: 2.40
  649. */
  650. #define G_FILE_ATTRIBUTE_THUMBNAIL_IS_VALID "thumbnail::is-valid" /* boolean */
  651. /* Preview */
  652. /**
  653. * G_FILE_ATTRIBUTE_PREVIEW_ICON:
  654. *
  655. * A key in the "preview" namespace for getting a #GIcon that can be
  656. * used to get preview of the file. For example, it may be a low
  657. * resolution thumbnail without metadata. Corresponding
  658. * #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_OBJECT. The value
  659. * for this key should contain a #GIcon.
  660. *
  661. * Since: 2.20
  662. **/
  663. #define G_FILE_ATTRIBUTE_PREVIEW_ICON "preview::icon" /* object (GIcon) */
  664. /* File system info (for g_file_get_filesystem_info) */
  665. /**
  666. * G_FILE_ATTRIBUTE_FILESYSTEM_SIZE:
  667. *
  668. * A key in the "filesystem" namespace for getting the total size (in bytes) of the file system,
  669. * used in g_file_query_filesystem_info(). Corresponding #GFileAttributeType
  670. * is %G_FILE_ATTRIBUTE_TYPE_UINT64.
  671. **/
  672. #define G_FILE_ATTRIBUTE_FILESYSTEM_SIZE "filesystem::size" /* uint64 */
  673. /**
  674. * G_FILE_ATTRIBUTE_FILESYSTEM_FREE:
  675. *
  676. * A key in the "filesystem" namespace for getting the number of bytes of free space left on the
  677. * file system. Corresponding #GFileAttributeType is
  678. * %G_FILE_ATTRIBUTE_TYPE_UINT64.
  679. **/
  680. #define G_FILE_ATTRIBUTE_FILESYSTEM_FREE "filesystem::free" /* uint64 */
  681. /**
  682. * G_FILE_ATTRIBUTE_FILESYSTEM_USED:
  683. *
  684. * A key in the "filesystem" namespace for getting the number of bytes of used on the
  685. * file system. Corresponding #GFileAttributeType is
  686. * %G_FILE_ATTRIBUTE_TYPE_UINT64.
  687. *
  688. * Since: 2.32
  689. */
  690. #define G_FILE_ATTRIBUTE_FILESYSTEM_USED "filesystem::used" /* uint64 */
  691. /**
  692. * G_FILE_ATTRIBUTE_FILESYSTEM_TYPE:
  693. *
  694. * A key in the "filesystem" namespace for getting the file system's type.
  695. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  696. **/
  697. #define G_FILE_ATTRIBUTE_FILESYSTEM_TYPE "filesystem::type" /* string */
  698. /**
  699. * G_FILE_ATTRIBUTE_FILESYSTEM_READONLY:
  700. *
  701. * A key in the "filesystem" namespace for checking if the file system
  702. * is read only. Is set to %TRUE if the file system is read only.
  703. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_BOOLEAN.
  704. **/
  705. #define G_FILE_ATTRIBUTE_FILESYSTEM_READONLY "filesystem::readonly" /* boolean */
  706. /**
  707. * G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW:
  708. *
  709. * A key in the "filesystem" namespace for hinting a file manager
  710. * application whether it should preview (e.g. thumbnail) files on the
  711. * file system. The value for this key contain a
  712. * #GFilesystemPreviewType.
  713. **/
  714. #define G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW "filesystem::use-preview" /* uint32 (GFilesystemPreviewType) */
  715. /**
  716. * G_FILE_ATTRIBUTE_GVFS_BACKEND:
  717. *
  718. * A key in the "gvfs" namespace that gets the name of the current
  719. * GVFS backend in use. Corresponding #GFileAttributeType is
  720. * %G_FILE_ATTRIBUTE_TYPE_STRING.
  721. **/
  722. #define G_FILE_ATTRIBUTE_GVFS_BACKEND "gvfs::backend" /* string */
  723. /**
  724. * G_FILE_ATTRIBUTE_SELINUX_CONTEXT:
  725. *
  726. * A key in the "selinux" namespace for getting the file's SELinux
  727. * context. Corresponding #GFileAttributeType is
  728. * %G_FILE_ATTRIBUTE_TYPE_STRING. Note that this attribute is only
  729. * available if GLib has been built with SELinux support.
  730. **/
  731. #define G_FILE_ATTRIBUTE_SELINUX_CONTEXT "selinux::context" /* string */
  732. /**
  733. * G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT:
  734. *
  735. * A key in the "trash" namespace. When requested against
  736. * "trash:///" returns the number of (toplevel) items in the trash folder.
  737. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_UINT32.
  738. **/
  739. #define G_FILE_ATTRIBUTE_TRASH_ITEM_COUNT "trash::item-count" /* uint32 */
  740. /**
  741. * G_FILE_ATTRIBUTE_TRASH_ORIG_PATH:
  742. *
  743. * A key in the "trash" namespace. When requested against
  744. * items in "trash:///", will return the original path to the file before it
  745. * was trashed. Corresponding #GFileAttributeType is
  746. * %G_FILE_ATTRIBUTE_TYPE_BYTE_STRING.
  747. *
  748. * Since: 2.24
  749. **/
  750. #define G_FILE_ATTRIBUTE_TRASH_ORIG_PATH "trash::orig-path" /* byte string */
  751. /**
  752. * G_FILE_ATTRIBUTE_TRASH_DELETION_DATE:
  753. *
  754. * A key in the "trash" namespace. When requested against
  755. * items in "trash:///", will return the date and time when the file
  756. * was trashed. The format of the returned string is YYYY-MM-DDThh:mm:ss.
  757. * Corresponding #GFileAttributeType is %G_FILE_ATTRIBUTE_TYPE_STRING.
  758. *
  759. * Since: 2.24
  760. **/
  761. #define G_FILE_ATTRIBUTE_TRASH_DELETION_DATE "trash::deletion-date" /* string */
  762. GLIB_AVAILABLE_IN_ALL
  763. GType g_file_info_get_type (void) G_GNUC_CONST;
  764. GLIB_AVAILABLE_IN_ALL
  765. GFileInfo * g_file_info_new (void);
  766. GLIB_AVAILABLE_IN_ALL
  767. GFileInfo * g_file_info_dup (GFileInfo *other);
  768. GLIB_AVAILABLE_IN_ALL
  769. void g_file_info_copy_into (GFileInfo *src_info,
  770. GFileInfo *dest_info);
  771. GLIB_AVAILABLE_IN_ALL
  772. gboolean g_file_info_has_attribute (GFileInfo *info,
  773. const char *attribute);
  774. GLIB_AVAILABLE_IN_ALL
  775. gboolean g_file_info_has_namespace (GFileInfo *info,
  776. const char *name_space);
  777. GLIB_AVAILABLE_IN_ALL
  778. char ** g_file_info_list_attributes (GFileInfo *info,
  779. const char *name_space);
  780. GLIB_AVAILABLE_IN_ALL
  781. gboolean g_file_info_get_attribute_data (GFileInfo *info,
  782. const char *attribute,
  783. GFileAttributeType *type,
  784. gpointer *value_pp,
  785. GFileAttributeStatus *status);
  786. GLIB_AVAILABLE_IN_ALL
  787. GFileAttributeType g_file_info_get_attribute_type (GFileInfo *info,
  788. const char *attribute);
  789. GLIB_AVAILABLE_IN_ALL
  790. void g_file_info_remove_attribute (GFileInfo *info,
  791. const char *attribute);
  792. GLIB_AVAILABLE_IN_ALL
  793. GFileAttributeStatus g_file_info_get_attribute_status (GFileInfo *info,
  794. const char *attribute);
  795. GLIB_AVAILABLE_IN_ALL
  796. gboolean g_file_info_set_attribute_status (GFileInfo *info,
  797. const char *attribute,
  798. GFileAttributeStatus status);
  799. GLIB_AVAILABLE_IN_ALL
  800. char * g_file_info_get_attribute_as_string (GFileInfo *info,
  801. const char *attribute);
  802. GLIB_AVAILABLE_IN_ALL
  803. const char * g_file_info_get_attribute_string (GFileInfo *info,
  804. const char *attribute);
  805. GLIB_AVAILABLE_IN_ALL
  806. const char * g_file_info_get_attribute_byte_string (GFileInfo *info,
  807. const char *attribute);
  808. GLIB_AVAILABLE_IN_ALL
  809. gboolean g_file_info_get_attribute_boolean (GFileInfo *info,
  810. const char *attribute);
  811. GLIB_AVAILABLE_IN_ALL
  812. guint32 g_file_info_get_attribute_uint32 (GFileInfo *info,
  813. const char *attribute);
  814. GLIB_AVAILABLE_IN_ALL
  815. gint32 g_file_info_get_attribute_int32 (GFileInfo *info,
  816. const char *attribute);
  817. GLIB_AVAILABLE_IN_ALL
  818. guint64 g_file_info_get_attribute_uint64 (GFileInfo *info,
  819. const char *attribute);
  820. GLIB_AVAILABLE_IN_ALL
  821. gint64 g_file_info_get_attribute_int64 (GFileInfo *info,
  822. const char *attribute);
  823. GLIB_AVAILABLE_IN_ALL
  824. GObject * g_file_info_get_attribute_object (GFileInfo *info,
  825. const char *attribute);
  826. GLIB_AVAILABLE_IN_ALL
  827. char ** g_file_info_get_attribute_stringv (GFileInfo *info,
  828. const char *attribute);
  829. GLIB_AVAILABLE_IN_ALL
  830. void g_file_info_set_attribute (GFileInfo *info,
  831. const char *attribute,
  832. GFileAttributeType type,
  833. gpointer value_p);
  834. GLIB_AVAILABLE_IN_ALL
  835. void g_file_info_set_attribute_string (GFileInfo *info,
  836. const char *attribute,
  837. const char *attr_value);
  838. GLIB_AVAILABLE_IN_ALL
  839. void g_file_info_set_attribute_byte_string (GFileInfo *info,
  840. const char *attribute,
  841. const char *attr_value);
  842. GLIB_AVAILABLE_IN_ALL
  843. void g_file_info_set_attribute_boolean (GFileInfo *info,
  844. const char *attribute,
  845. gboolean attr_value);
  846. GLIB_AVAILABLE_IN_ALL
  847. void g_file_info_set_attribute_uint32 (GFileInfo *info,
  848. const char *attribute,
  849. guint32 attr_value);
  850. GLIB_AVAILABLE_IN_ALL
  851. void g_file_info_set_attribute_int32 (GFileInfo *info,
  852. const char *attribute,
  853. gint32 attr_value);
  854. GLIB_AVAILABLE_IN_ALL
  855. void g_file_info_set_attribute_uint64 (GFileInfo *info,
  856. const char *attribute,
  857. guint64 attr_value);
  858. GLIB_AVAILABLE_IN_ALL
  859. void g_file_info_set_attribute_int64 (GFileInfo *info,
  860. const char *attribute,
  861. gint64 attr_value);
  862. GLIB_AVAILABLE_IN_ALL
  863. void g_file_info_set_attribute_object (GFileInfo *info,
  864. const char *attribute,
  865. GObject *attr_value);
  866. GLIB_AVAILABLE_IN_ALL
  867. void g_file_info_set_attribute_stringv (GFileInfo *info,
  868. const char *attribute,
  869. char **attr_value);
  870. GLIB_AVAILABLE_IN_ALL
  871. void g_file_info_clear_status (GFileInfo *info);
  872. /* Helper getters: */
  873. GLIB_AVAILABLE_IN_2_36
  874. GDateTime * g_file_info_get_deletion_date (GFileInfo *info);
  875. GLIB_AVAILABLE_IN_ALL
  876. GFileType g_file_info_get_file_type (GFileInfo *info);
  877. GLIB_AVAILABLE_IN_ALL
  878. gboolean g_file_info_get_is_hidden (GFileInfo *info);
  879. GLIB_AVAILABLE_IN_ALL
  880. gboolean g_file_info_get_is_backup (GFileInfo *info);
  881. GLIB_AVAILABLE_IN_ALL
  882. gboolean g_file_info_get_is_symlink (GFileInfo *info);
  883. GLIB_AVAILABLE_IN_ALL
  884. const char * g_file_info_get_name (GFileInfo *info);
  885. GLIB_AVAILABLE_IN_ALL
  886. const char * g_file_info_get_display_name (GFileInfo *info);
  887. GLIB_AVAILABLE_IN_ALL
  888. const char * g_file_info_get_edit_name (GFileInfo *info);
  889. GLIB_AVAILABLE_IN_ALL
  890. GIcon * g_file_info_get_icon (GFileInfo *info);
  891. GLIB_AVAILABLE_IN_ALL
  892. GIcon * g_file_info_get_symbolic_icon (GFileInfo *info);
  893. GLIB_AVAILABLE_IN_ALL
  894. const char * g_file_info_get_content_type (GFileInfo *info);
  895. GLIB_AVAILABLE_IN_ALL
  896. goffset g_file_info_get_size (GFileInfo *info);
  897. GLIB_AVAILABLE_IN_ALL
  898. void g_file_info_get_modification_time (GFileInfo *info,
  899. GTimeVal *result);
  900. GLIB_AVAILABLE_IN_ALL
  901. const char * g_file_info_get_symlink_target (GFileInfo *info);
  902. GLIB_AVAILABLE_IN_ALL
  903. const char * g_file_info_get_etag (GFileInfo *info);
  904. GLIB_AVAILABLE_IN_ALL
  905. gint32 g_file_info_get_sort_order (GFileInfo *info);
  906. GLIB_AVAILABLE_IN_ALL
  907. void g_file_info_set_attribute_mask (GFileInfo *info,
  908. GFileAttributeMatcher *mask);
  909. GLIB_AVAILABLE_IN_ALL
  910. void g_file_info_unset_attribute_mask (GFileInfo *info);
  911. /* Helper setters: */
  912. GLIB_AVAILABLE_IN_ALL
  913. void g_file_info_set_file_type (GFileInfo *info,
  914. GFileType type);
  915. GLIB_AVAILABLE_IN_ALL
  916. void g_file_info_set_is_hidden (GFileInfo *info,
  917. gboolean is_hidden);
  918. GLIB_AVAILABLE_IN_ALL
  919. void g_file_info_set_is_symlink (GFileInfo *info,
  920. gboolean is_symlink);
  921. GLIB_AVAILABLE_IN_ALL
  922. void g_file_info_set_name (GFileInfo *info,
  923. const char *name);
  924. GLIB_AVAILABLE_IN_ALL
  925. void g_file_info_set_display_name (GFileInfo *info,
  926. const char *display_name);
  927. GLIB_AVAILABLE_IN_ALL
  928. void g_file_info_set_edit_name (GFileInfo *info,
  929. const char *edit_name);
  930. GLIB_AVAILABLE_IN_ALL
  931. void g_file_info_set_icon (GFileInfo *info,
  932. GIcon *icon);
  933. GLIB_AVAILABLE_IN_ALL
  934. void g_file_info_set_symbolic_icon (GFileInfo *info,
  935. GIcon *icon);
  936. GLIB_AVAILABLE_IN_ALL
  937. void g_file_info_set_content_type (GFileInfo *info,
  938. const char *content_type);
  939. GLIB_AVAILABLE_IN_ALL
  940. void g_file_info_set_size (GFileInfo *info,
  941. goffset size);
  942. GLIB_AVAILABLE_IN_ALL
  943. void g_file_info_set_modification_time (GFileInfo *info,
  944. GTimeVal *mtime);
  945. GLIB_AVAILABLE_IN_ALL
  946. void g_file_info_set_symlink_target (GFileInfo *info,
  947. const char *symlink_target);
  948. GLIB_AVAILABLE_IN_ALL
  949. void g_file_info_set_sort_order (GFileInfo *info,
  950. gint32 sort_order);
  951. #define G_TYPE_FILE_ATTRIBUTE_MATCHER (g_file_attribute_matcher_get_type ())
  952. GLIB_AVAILABLE_IN_ALL
  953. GType g_file_attribute_matcher_get_type (void) G_GNUC_CONST;
  954. GLIB_AVAILABLE_IN_ALL
  955. GFileAttributeMatcher *g_file_attribute_matcher_new (const char *attributes);
  956. GLIB_AVAILABLE_IN_ALL
  957. GFileAttributeMatcher *g_file_attribute_matcher_ref (GFileAttributeMatcher *matcher);
  958. GLIB_AVAILABLE_IN_ALL
  959. void g_file_attribute_matcher_unref (GFileAttributeMatcher *matcher);
  960. GLIB_AVAILABLE_IN_ALL
  961. GFileAttributeMatcher *g_file_attribute_matcher_subtract (GFileAttributeMatcher *matcher,
  962. GFileAttributeMatcher *subtract);
  963. GLIB_AVAILABLE_IN_ALL
  964. gboolean g_file_attribute_matcher_matches (GFileAttributeMatcher *matcher,
  965. const char *attribute);
  966. GLIB_AVAILABLE_IN_ALL
  967. gboolean g_file_attribute_matcher_matches_only (GFileAttributeMatcher *matcher,
  968. const char *attribute);
  969. GLIB_AVAILABLE_IN_ALL
  970. gboolean g_file_attribute_matcher_enumerate_namespace (GFileAttributeMatcher *matcher,
  971. const char *ns);
  972. GLIB_AVAILABLE_IN_ALL
  973. const char * g_file_attribute_matcher_enumerate_next (GFileAttributeMatcher *matcher);
  974. GLIB_AVAILABLE_IN_2_32
  975. char * g_file_attribute_matcher_to_string (GFileAttributeMatcher *matcher);
  976. G_END_DECLS
  977. #endif /* __G_FILE_INFO_H__ */