summaryrefslogtreecommitdiffstats
path: root/mpvcore/path.c
diff options
context:
space:
mode:
Diffstat (limited to 'mpvcore/path.c')
-rw-r--r--mpvcore/path.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mpvcore/path.c b/mpvcore/path.c
index 5d9b7841a4..5893284b5e 100644
--- a/mpvcore/path.c
+++ b/mpvcore/path.c
@@ -227,3 +227,11 @@ bool mp_path_isdir(const char *path)
struct stat st;
return mp_stat(path, &st) == 0 && S_ISDIR(st.st_mode);
}
+
+// Return false if it's considered a normal local filesystem path.
+bool mp_is_url(bstr path)
+{
+ // The URL check is a bit murky, but "/path" and "./path" are never URLs.
+ return path.len && path.start[0] != '/' && path.start[0] != '.' &&
+ bstr_find0(path, "://") >= 0;
+}