├── README ├── doc ├── Jamfile.v2 ├── POSIX_filename_encoding.txt ├── deprecated.html ├── design.htm ├── do_list.html ├── faq.htm ├── index.htm ├── path_table.cpp ├── path_table.txt ├── portability_guide.htm ├── proposal-issues.html ├── reference.html ├── release_history.html ├── src │ ├── README │ ├── boost-no-inspect │ ├── boost_snippets.html │ ├── build.bat │ ├── filesystem-proposal.html │ ├── hoist.bat │ ├── path-portability.html │ ├── publish.bat │ ├── source.html │ └── tr2_snippets.html ├── tutorial.html ├── v3.html └── v3_design.html ├── example ├── Jamfile.v2 ├── error_demo.cpp ├── file_size.cpp ├── file_status.cpp ├── mbcopy.cpp ├── mbpath.cpp ├── mbpath.hpp ├── path_info.cpp ├── simple_ls.cpp ├── stems.cpp ├── tchar.cpp ├── test │ ├── Jamfile.v2 │ ├── bld.bat │ ├── bld.sh │ ├── setup.bat │ └── setup.sh ├── tut0.cpp ├── tut1.cpp ├── tut2.cpp ├── tut3.cpp ├── tut4.cpp ├── tut5.cpp ├── tut6a.cpp ├── tut6b.cpp ├── tut6c.cpp └── tut6d.cpp ├── include └── boost │ ├── filesystem.hpp │ └── filesystem │ ├── config.hpp │ ├── convenience.hpp │ ├── detail │ └── utf8_codecvt_facet.hpp │ ├── exception.hpp │ ├── fstream.hpp │ ├── operations.hpp │ ├── path.hpp │ └── path_traits.hpp ├── index.html ├── src ├── codecvt_error_category.cpp ├── operations.cpp ├── path.cpp ├── path_traits.cpp ├── portability.cpp ├── unique_path.cpp ├── utf8_codecvt_facet.cpp ├── windows_file_codecvt.cpp └── windows_file_codecvt.hpp ├── test ├── Jamfile.v2 ├── convenience_test.cpp ├── deprecated_test.cpp ├── design_use_cases.cpp ├── equivalent.cpp ├── fstream_test.cpp ├── large_file_support_test.cpp ├── locale_info.cpp ├── long_path_test.cpp ├── macro_default_test.cpp ├── msvc10 │ ├── common.props │ ├── convenience_test │ │ └── convenience_test.vcxproj │ ├── deprecated_test │ │ └── deprecated_test.vcxproj │ ├── exec_monitor_dll │ │ └── exec_monitor_dll.vcxproj │ ├── exec_monitor_lib │ │ └── exec_monitor_lib.vcxproj │ ├── file_status │ │ └── file_status.vcxproj │ ├── filesystem-v3.sln │ ├── filesystem_dll │ │ └── filesystem_dll.vcxproj │ ├── filesystem_lib │ │ └── filesystem_lib.vcxproj │ ├── fstream_test │ │ └── fstream_test.vcxproj │ ├── interop_dll │ │ └── interop_dll.vcxproj │ ├── locale_info │ │ └── locale_info.vcxproj │ ├── long_path_test │ │ └── long_path_test.vcxproj │ ├── macro_default_test │ │ └── macro_default_test.vcxproj │ ├── operations_test │ │ └── operations_test.vcxproj │ ├── operations_unit_test │ │ └── operations_unit_test.vcxproj │ ├── path_test │ │ └── path_test.vcxproj │ ├── path_test_static │ │ └── path_test_static.vcxproj │ ├── path_unit_test │ │ └── path_unit_test.vcxproj │ ├── stems │ │ └── stems.vcxproj │ ├── system_dll │ │ └── system_dll.vcxproj │ ├── system_lib │ │ └── system_lib.vcxproj │ ├── tut1 │ │ └── tut1.vcxproj │ ├── tut2 │ │ └── tut2.vcxproj │ ├── tut3 │ │ └── tut3.vcxproj │ ├── tut4 │ │ └── tut4.vcxproj │ ├── tut5 │ │ └── tut5.vcxproj │ ├── tut6a │ │ └── tut6a.vcxproj │ ├── tut6b │ │ └── tut6b.vcxproj │ ├── tut6c │ │ └── tut6c.vcxproj │ └── windows_attributes │ │ └── windows_attributes.vcxproj ├── operations_test.cpp ├── operations_unit_test.cpp ├── path_test.cpp ├── path_unit_test.cpp ├── sample_test.cpp ├── test_codecvt.hpp └── windows_attributes.cpp └── tools ├── backup.bat └── exclude.txt /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/README -------------------------------------------------------------------------------- /doc/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/Jamfile.v2 -------------------------------------------------------------------------------- /doc/POSIX_filename_encoding.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/POSIX_filename_encoding.txt -------------------------------------------------------------------------------- /doc/deprecated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/deprecated.html -------------------------------------------------------------------------------- /doc/design.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/design.htm -------------------------------------------------------------------------------- /doc/do_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/do_list.html -------------------------------------------------------------------------------- /doc/faq.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/faq.htm -------------------------------------------------------------------------------- /doc/index.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/index.htm -------------------------------------------------------------------------------- /doc/path_table.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/path_table.cpp -------------------------------------------------------------------------------- /doc/path_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/path_table.txt -------------------------------------------------------------------------------- /doc/portability_guide.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/portability_guide.htm -------------------------------------------------------------------------------- /doc/proposal-issues.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/proposal-issues.html -------------------------------------------------------------------------------- /doc/reference.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/reference.html -------------------------------------------------------------------------------- /doc/release_history.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/release_history.html -------------------------------------------------------------------------------- /doc/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/README -------------------------------------------------------------------------------- /doc/src/boost-no-inspect: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /doc/src/boost_snippets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/boost_snippets.html -------------------------------------------------------------------------------- /doc/src/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/build.bat -------------------------------------------------------------------------------- /doc/src/filesystem-proposal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/filesystem-proposal.html -------------------------------------------------------------------------------- /doc/src/hoist.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/hoist.bat -------------------------------------------------------------------------------- /doc/src/path-portability.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/path-portability.html -------------------------------------------------------------------------------- /doc/src/publish.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/publish.bat -------------------------------------------------------------------------------- /doc/src/source.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/source.html -------------------------------------------------------------------------------- /doc/src/tr2_snippets.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/src/tr2_snippets.html -------------------------------------------------------------------------------- /doc/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/tutorial.html -------------------------------------------------------------------------------- /doc/v3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/v3.html -------------------------------------------------------------------------------- /doc/v3_design.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/doc/v3_design.html -------------------------------------------------------------------------------- /example/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/Jamfile.v2 -------------------------------------------------------------------------------- /example/error_demo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/error_demo.cpp -------------------------------------------------------------------------------- /example/file_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/file_size.cpp -------------------------------------------------------------------------------- /example/file_status.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/file_status.cpp -------------------------------------------------------------------------------- /example/mbcopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/mbcopy.cpp -------------------------------------------------------------------------------- /example/mbpath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/mbpath.cpp -------------------------------------------------------------------------------- /example/mbpath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/mbpath.hpp -------------------------------------------------------------------------------- /example/path_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/path_info.cpp -------------------------------------------------------------------------------- /example/simple_ls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/simple_ls.cpp -------------------------------------------------------------------------------- /example/stems.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/stems.cpp -------------------------------------------------------------------------------- /example/tchar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tchar.cpp -------------------------------------------------------------------------------- /example/test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/test/Jamfile.v2 -------------------------------------------------------------------------------- /example/test/bld.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/test/bld.bat -------------------------------------------------------------------------------- /example/test/bld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/test/bld.sh -------------------------------------------------------------------------------- /example/test/setup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/test/setup.bat -------------------------------------------------------------------------------- /example/test/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/test/setup.sh -------------------------------------------------------------------------------- /example/tut0.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut0.cpp -------------------------------------------------------------------------------- /example/tut1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut1.cpp -------------------------------------------------------------------------------- /example/tut2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut2.cpp -------------------------------------------------------------------------------- /example/tut3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut3.cpp -------------------------------------------------------------------------------- /example/tut4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut4.cpp -------------------------------------------------------------------------------- /example/tut5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut5.cpp -------------------------------------------------------------------------------- /example/tut6a.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut6a.cpp -------------------------------------------------------------------------------- /example/tut6b.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut6b.cpp -------------------------------------------------------------------------------- /example/tut6c.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut6c.cpp -------------------------------------------------------------------------------- /example/tut6d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/example/tut6d.cpp -------------------------------------------------------------------------------- /include/boost/filesystem.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/config.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/convenience.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/convenience.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/detail/utf8_codecvt_facet.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/detail/utf8_codecvt_facet.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/exception.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/exception.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/fstream.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/fstream.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/operations.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/operations.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/path.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/path.hpp -------------------------------------------------------------------------------- /include/boost/filesystem/path_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/include/boost/filesystem/path_traits.hpp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/index.html -------------------------------------------------------------------------------- /src/codecvt_error_category.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/codecvt_error_category.cpp -------------------------------------------------------------------------------- /src/operations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/operations.cpp -------------------------------------------------------------------------------- /src/path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/path.cpp -------------------------------------------------------------------------------- /src/path_traits.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/path_traits.cpp -------------------------------------------------------------------------------- /src/portability.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/portability.cpp -------------------------------------------------------------------------------- /src/unique_path.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/unique_path.cpp -------------------------------------------------------------------------------- /src/utf8_codecvt_facet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/utf8_codecvt_facet.cpp -------------------------------------------------------------------------------- /src/windows_file_codecvt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/windows_file_codecvt.cpp -------------------------------------------------------------------------------- /src/windows_file_codecvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/src/windows_file_codecvt.hpp -------------------------------------------------------------------------------- /test/Jamfile.v2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/Jamfile.v2 -------------------------------------------------------------------------------- /test/convenience_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/convenience_test.cpp -------------------------------------------------------------------------------- /test/deprecated_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/deprecated_test.cpp -------------------------------------------------------------------------------- /test/design_use_cases.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/design_use_cases.cpp -------------------------------------------------------------------------------- /test/equivalent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/equivalent.cpp -------------------------------------------------------------------------------- /test/fstream_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/fstream_test.cpp -------------------------------------------------------------------------------- /test/large_file_support_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/large_file_support_test.cpp -------------------------------------------------------------------------------- /test/locale_info.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/locale_info.cpp -------------------------------------------------------------------------------- /test/long_path_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/long_path_test.cpp -------------------------------------------------------------------------------- /test/macro_default_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/macro_default_test.cpp -------------------------------------------------------------------------------- /test/msvc10/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/common.props -------------------------------------------------------------------------------- /test/msvc10/convenience_test/convenience_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/convenience_test/convenience_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/deprecated_test/deprecated_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/deprecated_test/deprecated_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/exec_monitor_dll/exec_monitor_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/exec_monitor_dll/exec_monitor_dll.vcxproj -------------------------------------------------------------------------------- /test/msvc10/exec_monitor_lib/exec_monitor_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/exec_monitor_lib/exec_monitor_lib.vcxproj -------------------------------------------------------------------------------- /test/msvc10/file_status/file_status.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/file_status/file_status.vcxproj -------------------------------------------------------------------------------- /test/msvc10/filesystem-v3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/filesystem-v3.sln -------------------------------------------------------------------------------- /test/msvc10/filesystem_dll/filesystem_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/filesystem_dll/filesystem_dll.vcxproj -------------------------------------------------------------------------------- /test/msvc10/filesystem_lib/filesystem_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/filesystem_lib/filesystem_lib.vcxproj -------------------------------------------------------------------------------- /test/msvc10/fstream_test/fstream_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/fstream_test/fstream_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/interop_dll/interop_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/interop_dll/interop_dll.vcxproj -------------------------------------------------------------------------------- /test/msvc10/locale_info/locale_info.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/locale_info/locale_info.vcxproj -------------------------------------------------------------------------------- /test/msvc10/long_path_test/long_path_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/long_path_test/long_path_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/macro_default_test/macro_default_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/macro_default_test/macro_default_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/operations_test/operations_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/operations_test/operations_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/operations_unit_test/operations_unit_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/operations_unit_test/operations_unit_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/path_test/path_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/path_test/path_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/path_test_static/path_test_static.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/path_test_static/path_test_static.vcxproj -------------------------------------------------------------------------------- /test/msvc10/path_unit_test/path_unit_test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/path_unit_test/path_unit_test.vcxproj -------------------------------------------------------------------------------- /test/msvc10/stems/stems.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/stems/stems.vcxproj -------------------------------------------------------------------------------- /test/msvc10/system_dll/system_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/system_dll/system_dll.vcxproj -------------------------------------------------------------------------------- /test/msvc10/system_lib/system_lib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/system_lib/system_lib.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut1/tut1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut1/tut1.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut2/tut2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut2/tut2.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut3/tut3.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut3/tut3.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut4/tut4.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut4/tut4.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut5/tut5.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut5/tut5.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut6a/tut6a.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut6a/tut6a.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut6b/tut6b.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut6b/tut6b.vcxproj -------------------------------------------------------------------------------- /test/msvc10/tut6c/tut6c.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/tut6c/tut6c.vcxproj -------------------------------------------------------------------------------- /test/msvc10/windows_attributes/windows_attributes.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/msvc10/windows_attributes/windows_attributes.vcxproj -------------------------------------------------------------------------------- /test/operations_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/operations_test.cpp -------------------------------------------------------------------------------- /test/operations_unit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/operations_unit_test.cpp -------------------------------------------------------------------------------- /test/path_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/path_test.cpp -------------------------------------------------------------------------------- /test/path_unit_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/path_unit_test.cpp -------------------------------------------------------------------------------- /test/sample_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/sample_test.cpp -------------------------------------------------------------------------------- /test/test_codecvt.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/test_codecvt.hpp -------------------------------------------------------------------------------- /test/windows_attributes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/test/windows_attributes.cpp -------------------------------------------------------------------------------- /tools/backup.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/tools/backup.bat -------------------------------------------------------------------------------- /tools/exclude.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/filesystem-proposal/HEAD/tools/exclude.txt --------------------------------------------------------------------------------