operator<<,>>(std::experimental::filesystem::path)

Performs stream input or output on the path p. std::quoted is used so that spaces do not cause truncation when later read by stream input operator.

# Declarations

template< class CharT, class Traits >
std::basic_ostream<CharT,Traits>&
operator<<( std::basic_ostream<CharT,Traits>& os, const path& p );

(filesystem TS)

template< class CharT, class Traits >
std::basic_istream<CharT,Traits>&
operator>>( std::basic_istream<CharT,Traits>& is, path& p );

(filesystem TS)

# Parameters

# Example

This section is incompleteReason: no example