This file is indexed.

/usr/include/openturns/swig/Path_doc.i is in libopenturns-dev 1.7-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
%feature("docstring") OT::Path
"Path utilities.

No constructor, only static methods are available."

// ---------------------------------------------------------------------

%feature("docstring") OT::Path::GetInstallationDirectory
"Accessor to the installation directory.

Returns
-------
installDir : str
    The installation prefix."

// ---------------------------------------------------------------------

%feature("docstring") OT::Path::GetConfigDirectoryList
"Accessor to config directories.

Returns
-------
dirList : list of str
    The list of directories searched for config files."

// ---------------------------------------------------------------------

%feature("docstring") OT::Path::FindFileByNameInDirectoryList
"Find a file.

Parameters
----------
name : str
    Filename to be found.
dirList : sequence of str
    The list of directories to search in.


Returns
-------
dirList : list of str
    The list of directories searched for config files."
// ---------------------------------------------------------------------

%feature("docstring") OT::Path::GetTemporaryDirectory
"Accessor to the temporary directory.

Returns
-------
tempDir : str
    The absolute temporary directory."

// ---------------------------------------------------------------------

%feature("docstring") OT::Path::BuildTemporaryFileName
"Create a new temporary file.

Parameters
----------
pattern : str
    Filename pattern, eg 'tmpXXXXXX'.
    The 'XXXXXXX' part will be replaced by random chars.

Returns
-------
fileName : str
    The unique newly created file."

// ---------------------------------------------------------------------

%feature("docstring") OT::Path::CreateTemporaryDirectory
"Create a new temporary directory.

Parameters
----------
directoryPrefix : str
    A subdirectory name.

Returns
-------
tempDir : str
    The newly created directory."

// ---------------------------------------------------------------------

%feature("docstring") OT::Path::DeleteTemporaryDirectory
"Remove a temporary directory.

Parameters
----------
directoryName : str
    The directory to remove."