mirror of
https://github.com/haiwen/seafile.git
synced 2025-01-09 04:17:30 +08:00
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
#include <stdio.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
|
|
#include "sync-status-tree.h"
|
|
|
|
int main (int argc, char **argv)
|
|
{
|
|
struct SyncStatusTree *tree;
|
|
int val;
|
|
|
|
tree = sync_status_tree_new ();
|
|
|
|
sync_status_tree_add (tree, "a/b/c.txt", S_IFREG);
|
|
sync_status_tree_add (tree, "a/b/c/d", S_IFDIR);
|
|
sync_status_tree_add (tree, "a/xxx.txt", S_IFREG);
|
|
|
|
printf ("test after add\n");
|
|
|
|
val = sync_status_tree_exists (tree, "a/b/c.txt");
|
|
printf ("a/b/c.txt: %d\n", val);
|
|
|
|
val = sync_status_tree_exists (tree, "a/b/c/d");
|
|
printf ("a/b/c/d: %d\n", val);
|
|
|
|
val = sync_status_tree_exists (tree, "a/d/f.foo");
|
|
printf ("a/d/f.foo: %d\n", val);
|
|
|
|
val = sync_status_tree_exists (tree, "a/b");
|
|
printf ("a/b: %d\n", val);
|
|
|
|
sync_status_tree_del (tree, "a/b/c.txt");
|
|
sync_status_tree_del (tree, "a/b/c/d");
|
|
sync_status_tree_del (tree, "a/xxx.txt");
|
|
sync_status_tree_del (tree, "a/c.pdf");
|
|
|
|
printf ("test after del\n");
|
|
|
|
val = sync_status_tree_exists (tree, "a/b/c.txt");
|
|
printf ("a/b/c.txt: %d\n", val);
|
|
|
|
val = sync_status_tree_exists (tree, "a/b/c/d");
|
|
printf ("a/b/c/d: %d\n", val);
|
|
|
|
val = sync_status_tree_exists (tree, "a/b");
|
|
printf ("a/b: %d\n", val);
|
|
|
|
val = sync_status_tree_exists (tree, "a");
|
|
printf ("a: %d\n", val);
|
|
}
|