File: file.rst

package info (click to toggle)
xrootd 5.9.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,956 kB
  • sloc: cpp: 244,425; sh: 2,691; python: 1,980; ansic: 1,027; perl: 814; makefile: 272
file content (105 lines) | stat: -rw-r--r-- 2,842 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
=================
``File`` examples
=================

This page includes some simple examples of how to use the ``pyxrootd`` `File`
object to manipulate files on an ``xrootd`` server.

We'll use the following `File` object as a basis for the rest of the examples::

  from XRootD import client
  from XRootD.client.flags import OpenFlags

  with client.File() as f:
    f.open('root://someserver//tmp/eggs', OpenFlags.UPDATE)
    f.write('green\neggs\nand\nham\n')

.. -----------------------------------------------------------------------------
.. read
.. -----------------------------------------------------------------------------

.. include:: ../../../examples/read.py
   :start-line: 1
   :end-line: 3

.. literalinclude:: ../../../examples/read.py
   :lines: 17-

.. include:: ../../../examples/read.py
   :start-line: 4
   :end-line: 8

.. -----------------------------------------------------------------------------
.. write
.. -----------------------------------------------------------------------------

.. include:: ../../../examples/write.py
   :start-line: 1
   :end-line: 3

.. literalinclude:: ../../../examples/write.py
   :lines: 16-

.. include:: ../../../examples/write.py
   :start-line: 4
   :end-line: 8

.. -----------------------------------------------------------------------------
.. iterate
.. -----------------------------------------------------------------------------

.. include:: ../../../examples/iterate.py
   :start-line: 1
   :end-line: 3

.. literalinclude:: ../../../examples/iterate.py
   :lines: 18-

.. include:: ../../../examples/iterate.py
   :start-line: 4
   :end-line: 10

.. -----------------------------------------------------------------------------
.. readlines
.. -----------------------------------------------------------------------------

.. include:: ../../../examples/readlines.py
   :start-line: 1
   :end-line: 3

.. literalinclude:: ../../../examples/readlines.py
   :lines: 18-

.. include:: ../../../examples/readlines.py
   :start-line: 4
   :end-line: 10

.. -----------------------------------------------------------------------------
.. readchunks
.. -----------------------------------------------------------------------------

.. include:: ../../../examples/readchunks.py
   :start-line: 1
   :end-line: 3

.. literalinclude:: ../../../examples/readchunks.py
   :lines: 16-

.. include:: ../../../examples/readchunks.py
   :start-line: 4
   :end-line: 8

.. -----------------------------------------------------------------------------
.. vector_read
.. -----------------------------------------------------------------------------

.. include:: ../../../examples/vector_read.py
   :start-line: 1
   :end-line: 3

.. literalinclude:: ../../../examples/vector_read.py
   :lines: 17-

.. include:: ../../../examples/vector_read.py
   :start-line: 4
   :end-line: 9