We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
` func createDirOnDefaultDrive() async{ do { let driveInfo = try await client.send(AliyunpanScope.User.GetDriveInfo()) let driveId = driveInfo.default_drive_id let resp = try await client.send(AliyunpanScope.File.CreateFile(.init(drive_id: driveId, parent_file_id: "root", name: self.folderName,type: .folder, check_name_mode: .refuse))) print(resp) } catch { print("error",error) } }
`
异常信息
error valueNotFound(Swift.Array, Swift.DecodingError.Context(codingPath: [CodingKeys(stringValue: "part_info_list", intValue: nil)], debugDescription: "Cannot get unkeyed decoding container -- found null value instead", underlyingError: nil))
The text was updated successfully, but these errors were encountered:
wzxha
Successfully merging a pull request may close this issue.
`
func createDirOnDefaultDrive() async{
do {
let driveInfo = try await client.send(AliyunpanScope.User.GetDriveInfo())
let driveId = driveInfo.default_drive_id
let resp = try await client.send(AliyunpanScope.File.CreateFile(.init(drive_id: driveId, parent_file_id: "root", name: self.folderName,type: .folder, check_name_mode: .refuse)))
print(resp)
} catch {
print("error",error)
}
}
`
异常信息
error valueNotFound(Swift.Array, Swift.DecodingError.Context(codingPath: [CodingKeys(stringValue: "part_info_list", intValue: nil)], debugDescription: "Cannot get unkeyed decoding container -- found null value instead", underlyingError: nil))
The text was updated successfully, but these errors were encountered: