// find the node at the user profile
UserProfileManager profileManager = networkManager.getSession().getProfileManager();
UserProfile userProfile = profileManager.getUserProfile(getID(), false);
Index selectedNode = userProfile.getFileById(metaFileSmall.getId());
if (selectedNode == null) {
throw new Hive2HiveException("File node not found");
}
// ask the user for the new file name
String originalFileName = context.getFile().getName();
String noSuffix = FilenameUtils.removeExtension(originalFileName);