diff options
Diffstat (limited to 'src/server/cache/YoutubeCache.hx')
| -rw-r--r-- | src/server/cache/YoutubeCache.hx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/server/cache/YoutubeCache.hx b/src/server/cache/YoutubeCache.hx index 4f74080..c7053f9 100644 --- a/src/server/cache/YoutubeCache.hx +++ b/src/server/cache/YoutubeCache.hx @@ -29,6 +29,16 @@ class YoutubeCache { } } + public function checkUpdate():Void { + ytDlp.execAsync("-U", { + onData: d -> { + trace(d); + } + }).catchError(e -> { + trace(e); + }); + } + public function cleanYtInputFiles(prefix = "__tmp"):Void { final names = FileSystem.readDirectory(cache.cacheDir); for (name in names) { |
