All session codes are put up into text file for now.
$ Rename the java files first
Get-ChildItem -Path . -Recurse -Filter '.*.java' | ForEach-Object { Rename-Item -Path $.FullName -NewName ($.Name -replace '.', '') }
Delete the files -
$ Get-ChildItem -Path . -Recurse -Filter '._*' | Remove-Item