在Dropbox中重命名文件夹后。
Dropbox 2/files/list_folder/continue api给出响应,指示旧文件夹,并且所有子文件夹都已删除,并且文件夹具有新名称,所有旧子文件夹均具有新路径。
例如: 1.文件夹名称为“ contract test sub category 1”,其子文件夹名为“ contract test sub category 1”,子文件夹为“ test.png” 2.使用“合同测试子类别0”重命名文件夹。获取下面显示的响应。
.circletop {
/* circle styles */
width: 300px;
height: 300px;
font-family: Raleway;
border: 1px solid #222;
border-radius: 50%;
margin: 0 auto;
box-shadow: 0 0 20px #ccc;
/* become a flex container */
/* its children will be flex items */
display: flex;
/* place items in column */
flex-direction: column;
/* center flex items horizontally */
align-items: center;
/* center all content vertically */
justify-content: center;
}
/* simulate one more item to "balance" dex text */
.circletop:before {
content: "\A0";
visibility: hidden;
}
.lordo {
color: #45cec8;
padding-top: 10px;
padding-bottom: 25px;
font-weight: bold;
font-size: 19px;
}
.valori {
border-radius: 50px;
background: #05c6bf;
padding: 14px;
width: 100%;
color: #fff;
text-align: center;
box-shadow: 0 0 9px #45cec8;
font-size: 25px;
font-weight: bold;
}
.icon {
position: relative;
bottom: -19px;
right: -162px;
}
我要重命名的文件夹中有数千个子文件夹,并根据重命名的文件夹运行代码。
我希望将指示“合同测试子类别1”文件夹的名称重命名为“合同测试子类别0”。
有什么方法可以检测到特定的文件夹被重命名吗? 或任何可以提供预期结果的dropbox-api。