我在这里使用Expo.FileSystem,必须从api下载文件并将其保存到内部存储中的Videos文件夹中。
我必须将文件保存到我的视频文件夹中,而不是FileSystem.documentDirectory文件夹中。
# Data:
t <- c(1:10)
FTA <- sample(c("yes", "no"), 10, replace = T)
df <- data.frame(t, FTA)
df
t FTA
1 1 yes
2 2 yes
3 3 yes
4 4 no
5 5 no
6 6 no
7 7 yes
8 8 no
9 9 yes
10 10 yes
# Change `FTA` based on two conditions:
df$new <-ifelse(df$t >= 4 &df$FTA=="yes", 1,
ifelse(df$t >= 4 &df$FTA=="no", 0, as.character(df$FTA)))
df
t FTA new
1 1 yes yes
2 2 yes yes
3 3 yes yes
4 4 no 0
5 5 no 0
6 6 no 0
7 7 yes 1
8 8 no 0
9 9 yes 1
10 10 yes 1
如果我放置任何其他位置而不是FileSystem.documentDirectory +'yellow.mp4',则表明此位置不可写。 请帮助...