├── .editorconfig ├── .gitattribute ├── .github └── workflows │ ├── check.yml │ ├── cmake_check.yml │ └── release.yml ├── .gitignore ├── CMakeLists.txt ├── CTestConfig.cmake ├── LICENSE ├── NEWS.md ├── README.md ├── docs ├── THANKS.txt ├── readme.txt.in └── rifiuti.1.in ├── src ├── config.h.in ├── rifiuti-vista.c ├── rifiuti-vista.h ├── rifiuti.c ├── rifiuti.h ├── utils-conv.c ├── utils-conv.h ├── utils-error.h ├── utils-io.c ├── utils-io.h ├── utils-linux.c ├── utils-platform.h ├── utils-win.c ├── utils.c └── utils.h └── test ├── CMakeLists.txt ├── cmake ├── _try_encoding.cmake ├── cli-option.cmake ├── crafted.cmake ├── encoding.cmake ├── json.cmake ├── parse-info2.cmake ├── parse-rdir.cmake ├── read-write.cmake └── xml.cmake ├── rifiuti-schema.json ├── rifiuti.dtd ├── samples ├── INFO-95-ja-1 ├── INFO-95-ja-1-in-cp1255.json ├── INFO-95-ja-1-in-cp949.xml ├── INFO-95-ja-1.json ├── INFO-95-ja-1.txt ├── INFO-95-ja-1.xml ├── INFO-NT-en-1 ├── INFO-NT-en-1.txt ├── INFO2-03-tw-uncpath ├── INFO2-03-tw-uncpath.txt ├── INFO2-2k-cht-1 ├── INFO2-2k-cht-1.txt ├── INFO2-2k-tw-uncpath ├── INFO2-2k-tw-uncpath.txt ├── INFO2-ME-en-1 ├── INFO2-ME-en-1.txt ├── INFO2-empty ├── INFO2-empty.json ├── INFO2-empty.txt ├── INFO2-empty.xml ├── INFO2-me-en-uncpath ├── INFO2-me-en-uncpath.txt ├── INFO2-sample1 ├── INFO2-sample1-alt.txt ├── INFO2-sample1.json ├── INFO2-sample1.txt ├── INFO2-sample1.xml ├── INFO2-sample2 ├── INFO2-sample2-wrong-enc.txt ├── INFO2-sample2.json ├── INFO2-sample2.txt ├── INFO2-sample2.xml ├── INFO2-trunc ├── dir-2019-uncpath.json ├── dir-2019-uncpath.txt ├── dir-2019-uncpath │ ├── $I4OZLXW.bmp │ ├── $IW0RYW0.rtf │ └── $IYDW1CC.rtf ├── dir-bad-uni.txt ├── dir-bad-uni │ ├── $I77T7B0.ahk │ ├── $I77T7B1.ahk │ ├── $I77T7B2.ahk │ ├── $I77T7B3.ahk │ └── desktop.ini ├── dir-badfiles │ ├── $I4OZLXW.bmp │ ├── $IF47Q09 │ ├── $IW0RYW0.rtf │ └── $IX1JBL3.djvu ├── dir-empty.txt ├── dir-empty.xml ├── dir-empty │ └── desktop.ini ├── dir-isolated-idx.txt ├── dir-mixed │ ├── $IDNLPD4.exe │ └── $IEQWWMF.exe ├── dir-sample1.json ├── dir-sample1.txt ├── dir-sample1.xml ├── dir-sample1 │ ├── $I0JGHX7 │ ├── $I1IS2OK.txt │ ├── $I1TDH1G.exe │ ├── $I7FV8IY.exe │ ├── $I95CUKU │ ├── $IC6GEAW.exe │ ├── $IEQWWMF.exe │ ├── $IFRN1CZ.exe │ ├── $IHMU3NR.zip │ ├── $IMG2SSB │ ├── $IUVFB0M.rtf │ ├── $IW527XU.exe │ ├── $IYAR1YY.exe │ ├── $IZK01YL.txt │ ├── $IZUFRX4.vmdk │ ├── $R1IS2OK.txt │ └── $RUVFB0M.rtf ├── dir-single-idx.txt ├── dir-win10-01.json ├── dir-win10-01.txt ├── dir-win10-01.xml ├── dir-win10-01 │ ├── $I7R52EG.txt │ ├── $IBBFODN │ ├── $IDNLPD4.exe │ ├── $IHO61YT │ ├── $IKEGS1G │ ├── $IQ7LAXT.png │ ├── $IROMPZ0.exe │ ├── $R7R52EG.txt │ ├── $RKEGS1G │ ├── $RQ7LAXT.png │ └── desktop.ini ├── japanese-path-dir.txt ├── japanese-path-file.txt └── ごみ箱 │ ├── INFO2-empty │ └── dir-empty │ └── desktop.ini └── test_glib_iconv.c /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattribute: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /.github/workflows/cmake_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/.github/workflows/cmake_check.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CTestConfig.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/CTestConfig.cmake -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/LICENSE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/NEWS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/README.md -------------------------------------------------------------------------------- /docs/THANKS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/docs/THANKS.txt -------------------------------------------------------------------------------- /docs/readme.txt.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/docs/readme.txt.in -------------------------------------------------------------------------------- /docs/rifiuti.1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/docs/rifiuti.1.in -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/rifiuti-vista.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/rifiuti-vista.c -------------------------------------------------------------------------------- /src/rifiuti-vista.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/rifiuti-vista.h -------------------------------------------------------------------------------- /src/rifiuti.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/rifiuti.c -------------------------------------------------------------------------------- /src/rifiuti.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/rifiuti.h -------------------------------------------------------------------------------- /src/utils-conv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-conv.c -------------------------------------------------------------------------------- /src/utils-conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-conv.h -------------------------------------------------------------------------------- /src/utils-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-error.h -------------------------------------------------------------------------------- /src/utils-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-io.c -------------------------------------------------------------------------------- /src/utils-io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-io.h -------------------------------------------------------------------------------- /src/utils-linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-linux.c -------------------------------------------------------------------------------- /src/utils-platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-platform.h -------------------------------------------------------------------------------- /src/utils-win.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils-win.c -------------------------------------------------------------------------------- /src/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils.c -------------------------------------------------------------------------------- /src/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/src/utils.h -------------------------------------------------------------------------------- /test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/CMakeLists.txt -------------------------------------------------------------------------------- /test/cmake/_try_encoding.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/_try_encoding.cmake -------------------------------------------------------------------------------- /test/cmake/cli-option.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/cli-option.cmake -------------------------------------------------------------------------------- /test/cmake/crafted.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/crafted.cmake -------------------------------------------------------------------------------- /test/cmake/encoding.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/encoding.cmake -------------------------------------------------------------------------------- /test/cmake/json.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/json.cmake -------------------------------------------------------------------------------- /test/cmake/parse-info2.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/parse-info2.cmake -------------------------------------------------------------------------------- /test/cmake/parse-rdir.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/parse-rdir.cmake -------------------------------------------------------------------------------- /test/cmake/read-write.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/read-write.cmake -------------------------------------------------------------------------------- /test/cmake/xml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/cmake/xml.cmake -------------------------------------------------------------------------------- /test/rifiuti-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/rifiuti-schema.json -------------------------------------------------------------------------------- /test/rifiuti.dtd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/rifiuti.dtd -------------------------------------------------------------------------------- /test/samples/INFO-95-ja-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-95-ja-1 -------------------------------------------------------------------------------- /test/samples/INFO-95-ja-1-in-cp1255.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-95-ja-1-in-cp1255.json -------------------------------------------------------------------------------- /test/samples/INFO-95-ja-1-in-cp949.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-95-ja-1-in-cp949.xml -------------------------------------------------------------------------------- /test/samples/INFO-95-ja-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-95-ja-1.json -------------------------------------------------------------------------------- /test/samples/INFO-95-ja-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-95-ja-1.txt -------------------------------------------------------------------------------- /test/samples/INFO-95-ja-1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-95-ja-1.xml -------------------------------------------------------------------------------- /test/samples/INFO-NT-en-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-NT-en-1 -------------------------------------------------------------------------------- /test/samples/INFO-NT-en-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO-NT-en-1.txt -------------------------------------------------------------------------------- /test/samples/INFO2-03-tw-uncpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-03-tw-uncpath -------------------------------------------------------------------------------- /test/samples/INFO2-03-tw-uncpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-03-tw-uncpath.txt -------------------------------------------------------------------------------- /test/samples/INFO2-2k-cht-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-2k-cht-1 -------------------------------------------------------------------------------- /test/samples/INFO2-2k-cht-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-2k-cht-1.txt -------------------------------------------------------------------------------- /test/samples/INFO2-2k-tw-uncpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-2k-tw-uncpath -------------------------------------------------------------------------------- /test/samples/INFO2-2k-tw-uncpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-2k-tw-uncpath.txt -------------------------------------------------------------------------------- /test/samples/INFO2-ME-en-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-ME-en-1 -------------------------------------------------------------------------------- /test/samples/INFO2-ME-en-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-ME-en-1.txt -------------------------------------------------------------------------------- /test/samples/INFO2-empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-empty -------------------------------------------------------------------------------- /test/samples/INFO2-empty.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-empty.json -------------------------------------------------------------------------------- /test/samples/INFO2-empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-empty.txt -------------------------------------------------------------------------------- /test/samples/INFO2-empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-empty.xml -------------------------------------------------------------------------------- /test/samples/INFO2-me-en-uncpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-me-en-uncpath -------------------------------------------------------------------------------- /test/samples/INFO2-me-en-uncpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-me-en-uncpath.txt -------------------------------------------------------------------------------- /test/samples/INFO2-sample1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample1 -------------------------------------------------------------------------------- /test/samples/INFO2-sample1-alt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample1-alt.txt -------------------------------------------------------------------------------- /test/samples/INFO2-sample1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample1.json -------------------------------------------------------------------------------- /test/samples/INFO2-sample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample1.txt -------------------------------------------------------------------------------- /test/samples/INFO2-sample1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample1.xml -------------------------------------------------------------------------------- /test/samples/INFO2-sample2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample2 -------------------------------------------------------------------------------- /test/samples/INFO2-sample2-wrong-enc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample2-wrong-enc.txt -------------------------------------------------------------------------------- /test/samples/INFO2-sample2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample2.json -------------------------------------------------------------------------------- /test/samples/INFO2-sample2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample2.txt -------------------------------------------------------------------------------- /test/samples/INFO2-sample2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-sample2.xml -------------------------------------------------------------------------------- /test/samples/INFO2-trunc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/INFO2-trunc -------------------------------------------------------------------------------- /test/samples/dir-2019-uncpath.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-2019-uncpath.json -------------------------------------------------------------------------------- /test/samples/dir-2019-uncpath.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-2019-uncpath.txt -------------------------------------------------------------------------------- /test/samples/dir-2019-uncpath/$I4OZLXW.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-2019-uncpath/$I4OZLXW.bmp -------------------------------------------------------------------------------- /test/samples/dir-2019-uncpath/$IW0RYW0.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-2019-uncpath/$IW0RYW0.rtf -------------------------------------------------------------------------------- /test/samples/dir-2019-uncpath/$IYDW1CC.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-2019-uncpath/$IYDW1CC.rtf -------------------------------------------------------------------------------- /test/samples/dir-bad-uni.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-bad-uni.txt -------------------------------------------------------------------------------- /test/samples/dir-bad-uni/$I77T7B0.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-bad-uni/$I77T7B0.ahk -------------------------------------------------------------------------------- /test/samples/dir-bad-uni/$I77T7B1.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-bad-uni/$I77T7B1.ahk -------------------------------------------------------------------------------- /test/samples/dir-bad-uni/$I77T7B2.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-bad-uni/$I77T7B2.ahk -------------------------------------------------------------------------------- /test/samples/dir-bad-uni/$I77T7B3.ahk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-bad-uni/$I77T7B3.ahk -------------------------------------------------------------------------------- /test/samples/dir-bad-uni/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-bad-uni/desktop.ini -------------------------------------------------------------------------------- /test/samples/dir-badfiles/$I4OZLXW.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-badfiles/$I4OZLXW.bmp -------------------------------------------------------------------------------- /test/samples/dir-badfiles/$IF47Q09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-badfiles/$IF47Q09 -------------------------------------------------------------------------------- /test/samples/dir-badfiles/$IW0RYW0.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-badfiles/$IW0RYW0.rtf -------------------------------------------------------------------------------- /test/samples/dir-badfiles/$IX1JBL3.djvu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-badfiles/$IX1JBL3.djvu -------------------------------------------------------------------------------- /test/samples/dir-empty.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-empty.txt -------------------------------------------------------------------------------- /test/samples/dir-empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-empty.xml -------------------------------------------------------------------------------- /test/samples/dir-empty/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-empty/desktop.ini -------------------------------------------------------------------------------- /test/samples/dir-isolated-idx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-isolated-idx.txt -------------------------------------------------------------------------------- /test/samples/dir-mixed/$IDNLPD4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-mixed/$IDNLPD4.exe -------------------------------------------------------------------------------- /test/samples/dir-mixed/$IEQWWMF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-mixed/$IEQWWMF.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1.json -------------------------------------------------------------------------------- /test/samples/dir-sample1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1.txt -------------------------------------------------------------------------------- /test/samples/dir-sample1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1.xml -------------------------------------------------------------------------------- /test/samples/dir-sample1/$I0JGHX7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$I0JGHX7 -------------------------------------------------------------------------------- /test/samples/dir-sample1/$I1IS2OK.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$I1IS2OK.txt -------------------------------------------------------------------------------- /test/samples/dir-sample1/$I1TDH1G.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$I1TDH1G.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1/$I7FV8IY.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$I7FV8IY.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1/$I95CUKU: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$I95CUKU -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IC6GEAW.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IC6GEAW.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IEQWWMF.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IEQWWMF.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IFRN1CZ.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IFRN1CZ.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IHMU3NR.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IHMU3NR.zip -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IMG2SSB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IMG2SSB -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IUVFB0M.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IUVFB0M.rtf -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IW527XU.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IW527XU.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IYAR1YY.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IYAR1YY.exe -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IZK01YL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IZK01YL.txt -------------------------------------------------------------------------------- /test/samples/dir-sample1/$IZUFRX4.vmdk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$IZUFRX4.vmdk -------------------------------------------------------------------------------- /test/samples/dir-sample1/$R1IS2OK.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/samples/dir-sample1/$RUVFB0M.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-sample1/$RUVFB0M.rtf -------------------------------------------------------------------------------- /test/samples/dir-single-idx.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-single-idx.txt -------------------------------------------------------------------------------- /test/samples/dir-win10-01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01.json -------------------------------------------------------------------------------- /test/samples/dir-win10-01.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01.txt -------------------------------------------------------------------------------- /test/samples/dir-win10-01.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01.xml -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$I7R52EG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$I7R52EG.txt -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$IBBFODN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$IBBFODN -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$IDNLPD4.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$IDNLPD4.exe -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$IHO61YT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$IHO61YT -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$IKEGS1G: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$IKEGS1G -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$IQ7LAXT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$IQ7LAXT.png -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$IROMPZ0.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$IROMPZ0.exe -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$R7R52EG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$R7R52EG.txt -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$RKEGS1G: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/samples/dir-win10-01/$RQ7LAXT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/$RQ7LAXT.png -------------------------------------------------------------------------------- /test/samples/dir-win10-01/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/dir-win10-01/desktop.ini -------------------------------------------------------------------------------- /test/samples/japanese-path-dir.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/japanese-path-dir.txt -------------------------------------------------------------------------------- /test/samples/japanese-path-file.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/japanese-path-file.txt -------------------------------------------------------------------------------- /test/samples/ごみ箱/INFO2-empty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/ごみ箱/INFO2-empty -------------------------------------------------------------------------------- /test/samples/ごみ箱/dir-empty/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/samples/ごみ箱/dir-empty/desktop.ini -------------------------------------------------------------------------------- /test/test_glib_iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abelcheung/rifiuti2/HEAD/test/test_glib_iconv.c --------------------------------------------------------------------------------