This file is indexed.

/usr/include/libfilezilla/recursive_remove.hpp is in libfilezilla-dev 0.11.0-1.

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
#ifndef LIBFILEZILLA_RECURSIVE_REMOVE_HEADER
#define LIBFILEZILLA_RECURSIVE_REMOVE_HEADER

#include "libfilezilla.hpp"

#ifdef FZ_WINDOWS
#include "private/windows.hpp"
#endif

#include <list>

/// \file
/// \brief Class to recursively delete directories

namespace fz {

/** \brief Recursively deletes directories.
 *
 * Behavior varies by platform. On Windows, SHFileOperation is used,
 * whereas we manually traverse the directory tree on other platforms.
 */
class FZ_PUBLIC_SYMBOL recursive_remove
{
public:
	recursive_remove() = default;
	virtual ~recursive_remove() = default;

	recursive_remove(recursive_remove const&) = delete;
	recursive_remove& operator=(recursive_remove const&) = delete;

	/// \brief Removes given directory
	bool remove(native_string const& path);

	/// \brief Removes given directories
	bool remove(std::list<native_string> dirsToVisit);

protected:
	/// \brief Can be overriden to ask the user for a confirmation.
	///
	/// On Windows this isn't called, there SHFileOperation itself can ask for confirmation.
	/// See \ref adjust_shfileop
	virtual bool confirm() const { return true; }

#ifdef FZ_WINDOWS
	/// \brief Windows only: Allows customization of the SHFILEOPSTRUCT passed to SHFileOperation.
	///
	/// The default implementation allows undo and supresses any GUI output.
	virtual void adjust_shfileop(SHFILEOPSTRUCT & op);
#endif
};

}

#endif