├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .goreleaser.yml ├── .travis.yml.disabled ├── CHANGES ├── LICENSE ├── README.md ├── bench_test.go ├── cmd ├── seqinfo │ ├── README.md │ └── seqinfo.go └── seqls │ ├── README.md │ ├── internal │ └── fastwalk │ │ ├── fastwalk.go │ │ ├── fastwalk_dirent_fileno.go │ │ ├── fastwalk_dirent_ino.go │ │ ├── fastwalk_dirent_namlen_bsd.go │ │ ├── fastwalk_dirent_namlen_linux.go │ │ ├── fastwalk_portable.go │ │ └── fastwalk_unix.go │ ├── listing.go │ ├── main.go │ ├── manager.go │ ├── stat.go │ └── stat_windows.go ├── cpp ├── .gitignore ├── CMakeLists.txt ├── README.md ├── cmake │ ├── Config.cmake.in │ ├── FindModule.cmake │ ├── FindPCRECPP.cmake │ └── FindPackageHandleStandardArgs.cmake ├── docs │ ├── Doxyfile │ └── FileseqAPIMain.dox ├── error.cpp ├── error.h ├── fileseq.cpp ├── fileseq.h ├── frameset.cpp ├── frameset.h ├── pad.cpp ├── pad.h ├── private │ ├── frameset_p.cpp │ ├── frameset_p.h │ ├── sequence_p.cpp │ ├── sequence_p.h │ ├── strings.cpp │ └── strings.h ├── ranges │ ├── ranges.cpp │ └── ranges.h ├── sequence.cpp ├── sequence.h ├── test │ ├── CMakeLists.txt │ ├── TestFileSequence.cc │ ├── TestFrameSet.cc │ ├── TestFunctions.cc │ ├── TestRanges.cc │ ├── common.h │ ├── gtest │ │ ├── LICENSE │ │ ├── include │ │ │ └── gtest │ │ │ │ ├── gtest-death-test.h │ │ │ │ ├── gtest-message.h │ │ │ │ ├── gtest-param-test.h │ │ │ │ ├── gtest-param-test.h.pump │ │ │ │ ├── gtest-printers.h │ │ │ │ ├── gtest-spi.h │ │ │ │ ├── gtest-test-part.h │ │ │ │ ├── gtest-typed-test.h │ │ │ │ ├── gtest.h │ │ │ │ ├── gtest_pred_impl.h │ │ │ │ ├── gtest_prod.h │ │ │ │ └── internal │ │ │ │ ├── custom │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-printers.h │ │ │ │ └── gtest.h │ │ │ │ ├── gtest-death-test-internal.h │ │ │ │ ├── gtest-filepath.h │ │ │ │ ├── gtest-internal.h │ │ │ │ ├── gtest-linked_ptr.h │ │ │ │ ├── gtest-param-util-generated.h │ │ │ │ ├── gtest-param-util-generated.h.pump │ │ │ │ ├── gtest-param-util.h │ │ │ │ ├── gtest-port-arch.h │ │ │ │ ├── gtest-port.h │ │ │ │ ├── gtest-string.h │ │ │ │ ├── gtest-tuple.h │ │ │ │ ├── gtest-tuple.h.pump │ │ │ │ ├── gtest-type-util.h │ │ │ │ └── gtest-type-util.h.pump │ │ └── src │ │ │ ├── gtest-all.cc │ │ │ ├── gtest-death-test.cc │ │ │ ├── gtest-filepath.cc │ │ │ ├── gtest-internal-inl.h │ │ │ ├── gtest-port.cc │ │ │ ├── gtest-printers.cc │ │ │ ├── gtest-test-part.cc │ │ │ ├── gtest-typed-test.cc │ │ │ ├── gtest.cc │ │ │ └── gtest_main.cc │ ├── main.cc │ ├── raw_tests.cpp │ └── testdata └── wscript ├── exp └── cpp │ ├── .gitignore │ ├── README.md │ ├── TODO.md │ ├── export │ ├── export.go │ ├── storage.go │ ├── storage_test.go │ └── uuid.go │ ├── fileseq.cpp │ ├── fileseq.h │ ├── fileseq.pro │ ├── frameset.cpp │ ├── frameset.h │ ├── private │ ├── .gitignore │ ├── fileseq_p.cpp │ └── fileseq_p.h │ ├── sequence.cpp │ ├── sequence.h │ ├── test │ ├── .gitignore │ ├── main.cpp │ ├── test.pro │ └── testdata │ ├── types.h │ └── wscript ├── fileseq.go ├── fileseq_test.go ├── frameset.go ├── go.mod ├── go.sum ├── pad.go ├── ranges ├── ranges.go └── ranges_test.go ├── sequence.go └── testdata ├── 2frame ├── foo.0001.ext └── foo.0002.ext ├── aFile.ext ├── complex.0005.tar.gz ├── complex.0006.tar.gz ├── complex.0007.tar.gz ├── complex_ext ├── 1.a.jpg ├── 100.1.ext ├── 101.1.ext ├── 102.1.ext ├── 2.a.jpg └── 3.a.jpg ├── file_without_ext ├── mixed ├── seq.-0001.ext ├── seq.-001.ext ├── seq.-1.ext ├── seq.00.ext ├── seq.0000.ext ├── seq.00000.ext ├── seq.00001.ext ├── seq.00002.ext ├── seq.00003.ext ├── seq.00004.ext ├── seq.00005.ext ├── seq.0001.ext ├── seq.0002.ext ├── seq.0003.ext ├── seq.0004.ext ├── seq.0005.ext ├── seq.01.ext ├── seq.01001.ext ├── seq.02.ext ├── seq.03.ext ├── seq.04.ext └── seq.05.ext ├── seqA.0001.exr ├── seqA.0003.exr ├── seqA.0004.exr ├── seqA.0005.exr ├── seqA.0006.exr ├── seqA.0008.exr ├── seqA.0009.exr ├── seqA.0010.exr ├── seqB.0005.jpg ├── seqB.0006.jpg ├── seqB.0007.jpg ├── seqB.0008.jpg ├── seqB.0009.jpg ├── seqB.0010.jpg ├── seqB.0011.jpg ├── seqB.0012.jpg ├── seqB.0013.jpg ├── seqB.0014.jpg ├── seqB.0016.jpg ├── seqB.0017.jpg ├── seqB.0018.jpg ├── seqB.0020.jpg ├── seqC.-1.tif ├── seqC.-2.tif ├── seqC.-3.tif ├── seqC.-4.tif ├── seqC.-5.tif ├── seqC.00.tif ├── seqC.01.tif ├── seqC.02.tif ├── seqC.04.tif ├── seqC.05.tif ├── seqC.06.tif ├── seqC.07.tif ├── seqC.08.tif ├── seqC.09.tif ├── seqC.10.tif ├── seqC.20.tif ├── seqC.21.tif ├── seqC.27.tif ├── seqC.28.tif ├── seqC.29.tif ├── seqC.30.tif ├── seqD.10.gif ├── seqD.2.gif ├── seqD.3.gif ├── seqD.4.gif ├── seqD.5.gif ├── seqD.6.gif ├── seqD.7.gif ├── seqD.8.gif ├── seqD.9.gif ├── single_files ├── 123 ├── 123.ext ├── file.ext12345 ├── file.ext12345z └── file01_2025-05-13_1809-00.ext └── versions ├── _dir ├── file.0001.ext ├── file.0002.ext └── file.0003.ext ├── seq.0001.ext ├── seq.0002.ext ├── seq.0003.ext ├── seq.0004.ext ├── seq.0005.ext ├── seq.0006.ext ├── seq.0007.ext ├── seq.0008.ext ├── seq.0009.ext ├── seq.0010.ext ├── v3 ├── v4 └── v5 /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .goxc.local.json 2 | build/ 3 | .idea/ 4 | *.iml 5 | dist/ 6 | pkg/ 7 | -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /.travis.yml.disabled: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/.travis.yml.disabled -------------------------------------------------------------------------------- /CHANGES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/CHANGES -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/README.md -------------------------------------------------------------------------------- /bench_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/bench_test.go -------------------------------------------------------------------------------- /cmd/seqinfo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqinfo/README.md -------------------------------------------------------------------------------- /cmd/seqinfo/seqinfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqinfo/seqinfo.go -------------------------------------------------------------------------------- /cmd/seqls/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/README.md -------------------------------------------------------------------------------- /cmd/seqls/internal/fastwalk/fastwalk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/internal/fastwalk/fastwalk.go -------------------------------------------------------------------------------- /cmd/seqls/internal/fastwalk/fastwalk_dirent_fileno.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/internal/fastwalk/fastwalk_dirent_fileno.go -------------------------------------------------------------------------------- /cmd/seqls/internal/fastwalk/fastwalk_dirent_ino.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/internal/fastwalk/fastwalk_dirent_ino.go -------------------------------------------------------------------------------- /cmd/seqls/internal/fastwalk/fastwalk_dirent_namlen_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/internal/fastwalk/fastwalk_dirent_namlen_bsd.go -------------------------------------------------------------------------------- /cmd/seqls/internal/fastwalk/fastwalk_dirent_namlen_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/internal/fastwalk/fastwalk_dirent_namlen_linux.go -------------------------------------------------------------------------------- /cmd/seqls/internal/fastwalk/fastwalk_portable.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/internal/fastwalk/fastwalk_portable.go -------------------------------------------------------------------------------- /cmd/seqls/internal/fastwalk/fastwalk_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/internal/fastwalk/fastwalk_unix.go -------------------------------------------------------------------------------- /cmd/seqls/listing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/listing.go -------------------------------------------------------------------------------- /cmd/seqls/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/main.go -------------------------------------------------------------------------------- /cmd/seqls/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/manager.go -------------------------------------------------------------------------------- /cmd/seqls/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/stat.go -------------------------------------------------------------------------------- /cmd/seqls/stat_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cmd/seqls/stat_windows.go -------------------------------------------------------------------------------- /cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/.gitignore -------------------------------------------------------------------------------- /cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/README.md -------------------------------------------------------------------------------- /cpp/cmake/Config.cmake.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/cmake/Config.cmake.in -------------------------------------------------------------------------------- /cpp/cmake/FindModule.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/cmake/FindModule.cmake -------------------------------------------------------------------------------- /cpp/cmake/FindPCRECPP.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/cmake/FindPCRECPP.cmake -------------------------------------------------------------------------------- /cpp/cmake/FindPackageHandleStandardArgs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/cmake/FindPackageHandleStandardArgs.cmake -------------------------------------------------------------------------------- /cpp/docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/docs/Doxyfile -------------------------------------------------------------------------------- /cpp/docs/FileseqAPIMain.dox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/docs/FileseqAPIMain.dox -------------------------------------------------------------------------------- /cpp/error.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/error.cpp -------------------------------------------------------------------------------- /cpp/error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/error.h -------------------------------------------------------------------------------- /cpp/fileseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/fileseq.cpp -------------------------------------------------------------------------------- /cpp/fileseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/fileseq.h -------------------------------------------------------------------------------- /cpp/frameset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/frameset.cpp -------------------------------------------------------------------------------- /cpp/frameset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/frameset.h -------------------------------------------------------------------------------- /cpp/pad.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/pad.cpp -------------------------------------------------------------------------------- /cpp/pad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/pad.h -------------------------------------------------------------------------------- /cpp/private/frameset_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/private/frameset_p.cpp -------------------------------------------------------------------------------- /cpp/private/frameset_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/private/frameset_p.h -------------------------------------------------------------------------------- /cpp/private/sequence_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/private/sequence_p.cpp -------------------------------------------------------------------------------- /cpp/private/sequence_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/private/sequence_p.h -------------------------------------------------------------------------------- /cpp/private/strings.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/private/strings.cpp -------------------------------------------------------------------------------- /cpp/private/strings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/private/strings.h -------------------------------------------------------------------------------- /cpp/ranges/ranges.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/ranges/ranges.cpp -------------------------------------------------------------------------------- /cpp/ranges/ranges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/ranges/ranges.h -------------------------------------------------------------------------------- /cpp/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/sequence.cpp -------------------------------------------------------------------------------- /cpp/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/sequence.h -------------------------------------------------------------------------------- /cpp/test/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/CMakeLists.txt -------------------------------------------------------------------------------- /cpp/test/TestFileSequence.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/TestFileSequence.cc -------------------------------------------------------------------------------- /cpp/test/TestFrameSet.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/TestFrameSet.cc -------------------------------------------------------------------------------- /cpp/test/TestFunctions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/TestFunctions.cc -------------------------------------------------------------------------------- /cpp/test/TestRanges.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/TestRanges.cc -------------------------------------------------------------------------------- /cpp/test/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/common.h -------------------------------------------------------------------------------- /cpp/test/gtest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/LICENSE -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-death-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-death-test.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-message.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-param-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-param-test.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-param-test.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-param-test.h.pump -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-printers.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-spi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-spi.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-test-part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-test-part.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest-typed-test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest-typed-test.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest_pred_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest_pred_impl.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/gtest_prod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/gtest_prod.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/custom/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/custom/gtest-port.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/custom/gtest-printers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/custom/gtest-printers.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/custom/gtest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/custom/gtest.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-death-test-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-death-test-internal.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-filepath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-filepath.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-internal.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-linked_ptr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-linked_ptr.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-param-util-generated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-param-util-generated.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-param-util-generated.h.pump -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-param-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-param-util.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-port-arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-port-arch.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-port.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-port.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-string.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-tuple.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-tuple.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-tuple.h.pump -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-type-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-type-util.h -------------------------------------------------------------------------------- /cpp/test/gtest/include/gtest/internal/gtest-type-util.h.pump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/include/gtest/internal/gtest-type-util.h.pump -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-all.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-all.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-death-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-death-test.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-filepath.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-filepath.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-internal-inl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-internal-inl.h -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-port.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-port.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-printers.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-printers.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-test-part.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-test-part.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest-typed-test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest-typed-test.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest.cc -------------------------------------------------------------------------------- /cpp/test/gtest/src/gtest_main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/gtest/src/gtest_main.cc -------------------------------------------------------------------------------- /cpp/test/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/main.cc -------------------------------------------------------------------------------- /cpp/test/raw_tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/test/raw_tests.cpp -------------------------------------------------------------------------------- /cpp/test/testdata: -------------------------------------------------------------------------------- 1 | ../../testdata -------------------------------------------------------------------------------- /cpp/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/cpp/wscript -------------------------------------------------------------------------------- /exp/cpp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/.gitignore -------------------------------------------------------------------------------- /exp/cpp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/README.md -------------------------------------------------------------------------------- /exp/cpp/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/TODO.md -------------------------------------------------------------------------------- /exp/cpp/export/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/export/export.go -------------------------------------------------------------------------------- /exp/cpp/export/storage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/export/storage.go -------------------------------------------------------------------------------- /exp/cpp/export/storage_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/export/storage_test.go -------------------------------------------------------------------------------- /exp/cpp/export/uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/export/uuid.go -------------------------------------------------------------------------------- /exp/cpp/fileseq.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/fileseq.cpp -------------------------------------------------------------------------------- /exp/cpp/fileseq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/fileseq.h -------------------------------------------------------------------------------- /exp/cpp/fileseq.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/fileseq.pro -------------------------------------------------------------------------------- /exp/cpp/frameset.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/frameset.cpp -------------------------------------------------------------------------------- /exp/cpp/frameset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/frameset.h -------------------------------------------------------------------------------- /exp/cpp/private/.gitignore: -------------------------------------------------------------------------------- 1 | *.a 2 | *.o 3 | *.so 4 | libgo*.h 5 | -------------------------------------------------------------------------------- /exp/cpp/private/fileseq_p.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/private/fileseq_p.cpp -------------------------------------------------------------------------------- /exp/cpp/private/fileseq_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/private/fileseq_p.h -------------------------------------------------------------------------------- /exp/cpp/sequence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/sequence.cpp -------------------------------------------------------------------------------- /exp/cpp/sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/sequence.h -------------------------------------------------------------------------------- /exp/cpp/test/.gitignore: -------------------------------------------------------------------------------- 1 | *.pro.user 2 | test 3 | 4 | -------------------------------------------------------------------------------- /exp/cpp/test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/test/main.cpp -------------------------------------------------------------------------------- /exp/cpp/test/test.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/test/test.pro -------------------------------------------------------------------------------- /exp/cpp/test/testdata: -------------------------------------------------------------------------------- 1 | ../../../testdata -------------------------------------------------------------------------------- /exp/cpp/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/types.h -------------------------------------------------------------------------------- /exp/cpp/wscript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/exp/cpp/wscript -------------------------------------------------------------------------------- /fileseq.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/fileseq.go -------------------------------------------------------------------------------- /fileseq_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/fileseq_test.go -------------------------------------------------------------------------------- /frameset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/frameset.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/go.sum -------------------------------------------------------------------------------- /pad.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/pad.go -------------------------------------------------------------------------------- /ranges/ranges.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/ranges/ranges.go -------------------------------------------------------------------------------- /ranges/ranges_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/ranges/ranges_test.go -------------------------------------------------------------------------------- /sequence.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/justinfx/gofileseq/HEAD/sequence.go -------------------------------------------------------------------------------- /testdata/2frame/foo.0001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/2frame/foo.0002.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/aFile.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex.0005.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex.0006.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex.0007.tar.gz: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex_ext/1.a.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex_ext/100.1.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex_ext/101.1.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex_ext/102.1.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex_ext/2.a.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/complex_ext/3.a.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/file_without_ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.-0001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.-001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.-1.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.00.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.0000.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.00000.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.00001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.00002.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.00003.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.00004.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.00005.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.0001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.0002.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.0003.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.0004.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.0005.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.01.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.01001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.02.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.03.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.04.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/mixed/seq.05.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0001.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0003.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0004.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0005.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0006.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0008.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0009.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqA.0010.exr: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0005.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0006.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0007.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0008.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0009.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0010.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0011.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0012.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0013.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0014.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0016.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0017.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0018.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqB.0020.jpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.-1.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.-2.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.-3.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.-4.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.-5.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.00.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.01.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.02.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.04.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.05.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.06.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.07.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.08.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.09.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.10.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.20.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.21.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.27.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.28.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.29.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqC.30.tif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.10.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.2.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.3.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.4.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.5.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.6.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.7.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.8.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/seqD.9.gif: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/single_files/123: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/single_files/123.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/single_files/file.ext12345: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/single_files/file.ext12345z: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/single_files/file01_2025-05-13_1809-00.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/_dir/file.0001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/_dir/file.0002.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/_dir/file.0003.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0001.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0002.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0003.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0004.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0005.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0006.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0007.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0008.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0009.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/seq.0010.ext: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /testdata/versions/v3: -------------------------------------------------------------------------------- 1 | _dir -------------------------------------------------------------------------------- /testdata/versions/v4: -------------------------------------------------------------------------------- 1 | _dir -------------------------------------------------------------------------------- /testdata/versions/v5: -------------------------------------------------------------------------------- 1 | _dir --------------------------------------------------------------------------------