Don’t do CurrentFolder.ToString do CurrentFolder.FullName
And you don’t need an assign for that. Just use CurrentFolder.FullName directly in the copy folder:
Also, don’t use + to combine values into paths. Use Path.Combine:
Path.Combine(str_path,StudyID…etc)